:root {
  color-scheme: light;
  --ink: #073b63;
  --muted: #647280;
  --line: #dfe5e9;
  --paper: #f8f6f0;
  --white: #ffffff;
  --navy: #063b63;
  --navy-dark: #022842;
  --gold: #edbd67;
  --gold-dark: #c99442;
  --sand: #f3e7d2;
  --sky: #e7f1f5;
  --shadow: 0 24px 70px rgba(6, 59, 99, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(248, 246, 240, 0.98);
  box-shadow: 0 12px 35px rgba(6, 59, 99, 0.13);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(172px, 18vw, 255px);
  min-height: 62px;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid rgba(237, 189, 103, 0.34);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(2, 40, 66, 0.18);
  isolation: isolate;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 2.2vw, 30px);
  font-size: 0.94rem;
  font-weight: 800;
}

.header-cta,
.button,
.chat-input button,
.panel-head button,
.floating-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.header-cta,
.button.outline {
  border-color: currentColor;
}

.header-cta {
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled .header-cta {
  color: var(--navy);
  background: var(--sand);
}

.button.primary,
.chat-input button,
.floating-chat {
  color: var(--navy-dark);
  background: var(--gold);
  box-shadow: 0 15px 32px rgba(201, 148, 66, 0.24);
}

.button.primary:hover,
.chat-input button:hover,
.floating-chat:hover {
  background: var(--gold-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary.light {
  color: var(--navy);
  border-color: rgba(6, 59, 99, 0.22);
  background: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible,
.button.secondary.light:hover,
.button.secondary.light:focus-visible {
  color: var(--navy-dark);
  border-color: var(--gold);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 40, 66, 0.9), rgba(2, 40, 66, 0.62) 46%, rgba(2, 40, 66, 0.14)),
    linear-gradient(0deg, rgba(2, 40, 66, 0.58), rgba(2, 40, 66, 0.06) 42%);
}

.hero-content {
  position: relative;
  width: min(1060px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 46px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p,
summary,
label {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.45rem, 5vw, 4.85rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.pain-grid a,
.bot-promises span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.pain-grid a {
  display: flex;
  align-items: center;
  min-height: 64px;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.pain-grid a:hover,
.pain-grid a:focus-visible {
  color: var(--navy-dark);
  border-color: var(--gold);
  background: var(--gold);
  outline: none;
}

.intent-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.intent-strip article {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
}

.intent-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.intent-strip p,
.section-text p,
.story-grid p,
.seo-grid p,
.blog-grid p,
.faq-list p,
.contact p,
.chat-copy p {
  color: var(--muted);
}

.section,
.contact {
  padding: clamp(72px, 9vw, 122px) clamp(18px, 4vw, 52px);
}

.section.home-deep {
  display: none;
}

.section-text {
  max-width: 760px;
}

.section-text.centered {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.site-directory {
  background: var(--paper);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.directory-grid a {
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 59, 99, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.directory-grid a:hover,
.directory-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(237, 189, 103, 0.75);
  box-shadow: 0 18px 42px rgba(6, 59, 99, 0.13);
  outline: none;
}

.directory-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.directory-grid p {
  color: var(--muted);
}

.page-hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: flex-end;
  padding: 170px clamp(18px, 4vw, 52px) 72px;
  color: var(--white);
  background: linear-gradient(110deg, rgba(2, 40, 66, 0.96), rgba(6, 59, 99, 0.82)), url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2200&q=85") center/cover;
}

.page-hero > div {
  width: min(980px, 100%);
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.valuation {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 16px;
  height: 10px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.valuation-card,
.private-form,
.search-panel,
.test-card,
.alert-card,
.chat-widget,
.lead-panel,
.story-grid article,
.seo-grid article,
.blog-grid article,
.demand-grid article,
.proof-grid article,
.offmarket-grid article,
.zone-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 59, 99, 0.07);
}

.valuation-card,
.private-form,
.search-panel,
.test-card,
.alert-card {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.form-head,
.panel-head,
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-head span,
.blog-grid span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(237, 189, 103, 0.28);
  border-color: var(--gold);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.consent input {
  min-height: auto;
  margin-top: 5px;
}

.valuation-result {
  display: none;
  padding: 18px;
  border-radius: 8px;
  background: #eef5f8;
  color: var(--navy);
  font-weight: 800;
}

.valuation-result.is-visible {
  display: block;
}

.intent-note {
  display: none;
  padding: 14px 16px;
  border: 1px solid rgba(237, 189, 103, 0.55);
  border-radius: 8px;
  color: var(--navy);
  background: #fff7e8;
  font-weight: 800;
}

.intent-note.is-visible {
  display: block;
}

.emotional {
  background: var(--navy);
  color: var(--white);
}

.emotional .eyebrow,
.emotional .section-text p {
  color: var(--sand);
}

.story-grid,
.seo-grid,
.blog-grid,
.demand-grid,
.proof-grid,
.offmarket-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.active-demand {
  background: var(--white);
}

.demand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.demand-grid article,
.proof-grid article,
.offmarket-grid article {
  padding: 26px;
}

.demand-grid span,
.proof-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demand-grid p,
.proof-grid p,
.offmarket-grid p {
  color: var(--muted);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.story-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  padding: 26px;
}

.story-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.chatbot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.bot-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.bot-promises span {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.chat-widget {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chat-header {
  padding: 18px;
  color: var(--white);
  background: var(--navy-dark);
  justify-content: flex-start;
}

.chat-header small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.chat-progress {
  height: 8px;
  background: #e6edf1;
}

.chat-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width 180ms ease;
}

.chat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #61d394;
  box-shadow: 0 0 0 6px rgba(97, 211, 148, 0.12);
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 330px;
  max-height: 390px;
  overflow: auto;
  padding: 18px;
  background: #f9f7f1;
}

.message {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(6, 59, 99, 0.06);
}

.message strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
}

.message.user {
  justify-self: end;
  color: var(--white);
  background: var(--navy);
}

.message.system {
  max-width: 100%;
  border: 1px solid rgba(237, 189, 103, 0.55);
  background: #fff7e8;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 12px;
  background: #f9f7f1;
}

.quick-replies button {
  min-height: 34px;
  border: 1px solid #d5dde3;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.quick-replies button:hover {
  border-color: var(--gold);
  background: var(--sand);
}

.quick-replies button.is-selected {
  color: var(--navy-dark);
  border-color: var(--gold);
  background: var(--gold);
}

.quick-replies button.quick-continue {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.quick-replies button.quick-continue:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.chat-insights {
  display: grid;
  gap: 4px;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  background: var(--sky);
  font-size: 0.9rem;
}

.chat-insights span {
  color: var(--muted);
}

.chat-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.crm {
  background: #edf4f7;
}

.crm-layout {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pipeline div {
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-dark);
}

.pipeline strong {
  display: block;
  font-size: 2rem;
}

.pipeline span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.lead-panel {
  padding: 24px;
}

.panel-head button {
  min-height: 38px;
  color: var(--navy);
  background: var(--sky);
}

.lead-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.lead-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.lead-item small {
  color: var(--muted);
}

.lead-tag {
  align-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy-dark);
  background: var(--sky);
  font-size: 0.8rem;
  font-weight: 900;
}

.buyer-access {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.proof {
  background: #f9f7f1;
}

.proof .section-text {
  margin-bottom: 34px;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.burned-test {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.62fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  background: #eef5f8;
}

.test-card label {
  grid-template-columns: 18px 1fr;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.test-card input {
  min-height: auto;
}

.off-market {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 40, 66, 0.94), rgba(2, 40, 66, 0.82)),
    url("https://images.unsplash.com/photo-1600607687644-c7171b42498b?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.off-market .eyebrow,
.off-market .section-text p {
  color: var(--sand);
}

.offmarket-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offmarket-grid article {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.offmarket-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.buyer-copy p {
  color: var(--muted);
}

.area-map {
  background: var(--white);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.6fr);
  gap: 24px;
  align-items: stretch;
}

.map-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.map-pills button {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--navy);
  background: #fbfaf6;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.map-pills button:hover,
.map-pills button.is-active {
  border-color: var(--gold);
  background: var(--sand);
}

.zone-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 36px);
}

.zone-card span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zone-card p {
  margin: 0;
  color: var(--muted);
}

.zone-directory {
  background: #fbfaf6;
}

.zone-directory-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: 14px;
  width: min(1040px, 100%);
  margin: 0 auto 24px;
}

.zone-directory-tools label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.zone-directory-tools input,
.zone-directory-tools select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-weight: 750;
}

.zone-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.zone-directory-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 59, 99, 0.08);
}

.zone-directory-card span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.zone-directory-card h3 {
  margin-bottom: 0;
  color: var(--navy-dark);
}

.zone-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zone-chip-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(6, 59, 99, 0.14);
  border-radius: 8px;
  color: var(--navy);
  background: #f8f6f0;
  font-size: 0.88rem;
  font-weight: 850;
}

.zone-chip-list a:hover,
.zone-chip-list a:focus-visible {
  border-color: var(--gold);
  background: var(--sand);
}

.zone-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.zone-card-actions a {
  color: var(--navy-dark);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(237, 189, 103, 0.75);
  text-underline-offset: 4px;
}

.property-search {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.9fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  background: #f3f8fa;
}

.whatsapp-alerts {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  background: var(--white);
}

.feature-toggles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-toggles label {
  grid-template-columns: 18px 1fr;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  font-weight: 800;
}

.feature-toggles input {
  min-height: auto;
}

.search-result {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--sky);
  font-weight: 750;
}

.search-result span {
  display: block;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.result-actions .button {
  min-height: 42px;
}

.seo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-grid article,
.blog-grid article {
  padding: 26px;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid a,
.blog-index-grid a {
  color: inherit;
}

.blog-page {
  padding-top: 190px;
  background: var(--paper);
}

.article-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 52px) 42px;
}

.article-hero h1 {
  max-width: 980px;
  color: var(--navy);
  font-size: clamp(2.25rem, 5vw, 4.45rem);
}

.article-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--navy);
  font-weight: 900;
}

.article-body {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 52px) clamp(72px, 9vw, 122px);
  color: var(--navy);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1.04rem;
}

.article-body h2 {
  margin-top: 42px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.article-body ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.article-cta {
  margin-top: 52px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 52px) clamp(72px, 9vw, 122px);
}

.blog-index-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 59, 99, 0.07);
}

.blog-index-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-index-grid p {
  color: var(--muted);
}

.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-top: 32px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 40, 66, 0.94), rgba(2, 40, 66, 0.78)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.contact .eyebrow,
.contact p {
  color: var(--sand);
}

.floating-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  min-width: 70px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-dark);
}

.site-footer img {
  width: 190px;
  padding: 10px 14px;
  border: 1px solid rgba(237, 189, 103, 0.34);
  border-radius: 8px;
  background: #ffffff;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 14px;
  }

  .valuation,
  .buyer-access,
  .map-layout,
  .property-search,
  .burned-test,
  .whatsapp-alerts,
  .chatbot-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .directory-grid,
  .story-grid,
  .demand-grid,
  .proof-grid,
  .offmarket-grid,
  .map-pills,
  .zone-directory-grid,
  .pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 94vh;
  }

  .hero-content {
    width: min(100% - 32px, 1060px);
    padding-top: 112px;
    padding-bottom: 34px;
  }

  .intent-strip,
  .pain-grid,
  .directory-grid,
  .two-cols,
  .story-grid,
  .demand-grid,
  .proof-grid,
  .offmarket-grid,
  .seo-grid,
  .blog-grid,
  .blog-index-grid,
  .map-pills,
  .zone-directory-tools,
  .zone-directory-grid,
  .feature-toggles,
  .pipeline,
  .lead-item {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 58vh;
    padding-top: 135px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .chat-input {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
