:root {
  --white: #ffffff;
  --ink: #172026;
  --muted: #63707a;
  --navy: #0d2a3f;
  --navy-2: #153b55;
  --gold: #c89b3c;
  --gold-soft: #f3e5c2;
  --beige: #f6f0e7;
  --sand: #e7d7c2;
  --green: #2f7d5b;
  --blue: #2c6f9f;
  --line: #e5e9ec;
  --shadow: 0 20px 60px rgba(13, 42, 63, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 233, 236, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(100% - 32px, 1280px);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--green));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 11px;
  border-radius: var(--radius);
  color: #34424b;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  background: #f1f5f6;
  color: var(--navy);
}

.nav-menu .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: var(--navy);
}

.nav-menu .nav-cta:hover {
  color: var(--white);
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.nav-toggle svg,
.btn svg,
.text-link svg,
.service-card svg,
.info-card svg,
.resource-card svg,
.quick-actions svg,
.check-list svg,
.automation-list svg,
.contact-methods svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 42, 63, 0.92), rgba(13, 42, 63, 0.62) 45%, rgba(13, 42, 63, 0.18)),
    linear-gradient(0deg, rgba(13, 42, 63, 0.58), rgba(13, 42, 63, 0));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: end;
  padding: 150px 0 56px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero p,
.page-hero p,
.section-heading p,
.content-stack p,
.dashboard-copy p,
.trust-grid p {
  color: inherit;
  font-size: 1.08rem;
}

.hero-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.btn-primary:hover {
  background: #27694d;
}

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

.btn-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  color: var(--navy);
  border-color: #cdd6dc;
  background: var(--white);
}

.full {
  width: 100%;
}

.hero-panel,
.lead-box {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.panel-heading {
  margin-bottom: 18px;
}

.panel-heading span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-heading strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.2;
}

.segmented,
.filter-tabs {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6f8f8;
}

.segmented button,
.filter-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  font-weight: 750;
}

.segmented button {
  flex: 1;
}

.segmented .active,
.filter-tabs .active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 1px 6px rgba(23, 32, 38, 0.08);
}

.lead-form,
.lead-box {
  display: grid;
  gap: 14px;
}

.tab-panel {
  display: none;
  margin-top: 16px;
}

.tab-panel.active {
  display: grid;
}

label {
  display: grid;
  gap: 7px;
  color: #34424b;
  font-size: 0.86rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #d6dde1;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  outline: none;
}

textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 125, 91, 0.12);
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid.two {
  grid-template-columns: 1fr 1fr;
}

.form-status {
  margin: 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #1d5b42;
  background: #e7f3ed;
  font-size: 0.9rem;
  font-weight: 750;
}

.search-band {
  padding: 22px 0;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(23, 32, 38, 0.08);
}

.property-search {
  display: grid;
  grid-template-columns: minmax(230px, 1.5fr) repeat(3, minmax(120px, 0.65fr)) auto;
  gap: 12px;
  align-items: end;
}

.property-search label span {
  color: var(--muted);
  font-size: 0.78rem;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.quick-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: #fbfcfc;
  font-weight: 750;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.content-stack h2,
.dashboard-copy h2,
.trust-grid h2 {
  color: var(--navy);
}

.section-heading p,
.content-stack p,
.dashboard-copy p,
.trust-grid p {
  color: var(--muted);
}

.row-heading {
  max-width: var(--container);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 850;
  white-space: nowrap;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.info-card,
.resource-card {
  display: grid;
  gap: 12px;
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 125, 91, 0.35);
  box-shadow: var(--shadow);
}

.service-card svg,
.info-card svg,
.resource-card svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
}

.service-card strong,
.info-card strong,
.resource-card strong {
  color: var(--navy);
  font-size: 1.06rem;
}

.service-card span,
.resource-card span,
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.ai-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 42, 63, 0.96), rgba(21, 59, 85, 0.92)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.feature-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.feature-split p {
  color: rgba(255, 255, 255, 0.78);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ai-grid article {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.ai-grid svg {
  width: 26px;
  height: 26px;
  color: var(--gold-soft);
}

.ai-grid span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.listing-section {
  background: #fbfcfc;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.property-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 32, 38, 0.08);
}

.property-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.property-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.property-meta,
.property-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.property-meta span:first-child {
  color: #1d5b42;
  font-weight: 850;
}

.property-body strong {
  color: var(--navy);
  font-size: 1.45rem;
}

.property-body p {
  margin: 0;
  color: #3d4b54;
}

.property-stats span {
  padding-right: 8px;
  border-right: 1px solid var(--line);
}

.property-stats span:last-child {
  border-right: 0;
}

.property-body a {
  margin-top: 6px;
  color: var(--green);
  font-weight: 850;
}

.beige {
  background: var(--beige);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.content-stack {
  display: grid;
  justify-items: start;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin: 10px 0 28px;
}

.check-list span,
.automation-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #35434c;
  font-weight: 700;
}

.check-list svg,
.automation-list svg {
  color: var(--green);
}

.community-band {
  background: #f7faf9;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.community-grid article {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 32, 38, 0.08);
}

.community-grid img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}

.community-grid strong,
.community-grid span {
  display: block;
  padding-inline: 18px;
}

.community-grid strong {
  padding-top: 16px;
  color: var(--navy);
  font-size: 1.1rem;
}

.community-grid span {
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.dark-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #10212d);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.dashboard-copy h2,
.dashboard-copy p {
  color: inherit;
}

.dashboard-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.admin-grid .dashboard-copy p {
  color: var(--muted);
}

.mini-grid,
.pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-grid span {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
}

.dashboard-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.dashboard-card.light {
  border-color: var(--line);
  background: var(--white);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.dashboard-top span {
  color: var(--gold-soft);
  font-weight: 750;
}

.light .dashboard-top span {
  color: var(--green);
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline span {
  padding: 15px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 255, 255, 0.08);
}

.timeline .done {
  border-left-color: var(--green);
}

.pipeline div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfc;
}

.pipeline span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.pipeline strong {
  color: var(--navy);
  font-size: 1.8rem;
}

.automation-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-section {
  background: #f7faf9;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 32, 38, 0.08);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 0;
  color: #34424b;
  font-size: 1.02rem;
}

.review-card strong {
  color: var(--navy);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.resource-grid a {
  min-height: 104px;
  display: grid;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: #fbfcfc;
  font-weight: 800;
}

.site-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #111b22;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--white);
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  font-size: 0.88rem;
}

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  color: var(--white);
}

.site-footer a,
.site-footer span {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.compact-footer {
  padding: 30px 0;
}

.compact-footer p {
  max-width: 980px;
}

.page-hero {
  padding: 92px 0;
  background: linear-gradient(135deg, #f8fbfa, #f2eadc);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 44px;
  align-items: center;
}

.page-hero h1 {
  color: var(--navy);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
}

.page-hero p {
  max-width: 660px;
  color: var(--muted);
}

.page-hero img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.seller-hero,
.valuation-hero {
  background: linear-gradient(135deg, #f7f2ea, #eef7f1);
}

.lead-box {
  border-color: var(--line);
}

.lead-box h2 {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 1.65rem;
}

.inline-search {
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}

.filter-tabs {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
  overflow-x: auto;
}

.filter-tabs button {
  flex: 0 0 auto;
  padding: 0 14px;
}

.extended-listings [hidden] {
  display: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stats-grid article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 1.15rem;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.74);
}

.community-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.community-detail-grid article {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 32, 38, 0.08);
}

.community-detail-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.community-detail-grid div {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
}

.community-detail-grid strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.community-detail-grid p {
  margin: 0;
  color: var(--muted);
}

.community-detail-grid span {
  color: var(--green);
  font-weight: 800;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-card {
  min-height: 210px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-methods a,
.contact-methods span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.page-mini {
  margin-top: 26px;
}

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

@media (max-width: 1120px) {
  .nav-menu {
    gap: 0;
  }

  .nav-menu a {
    padding-inline: 8px;
    font-size: 0.84rem;
  }

  .card-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .property-search {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .property-search .wide {
    grid-column: 1 / -1;
  }

  .property-search .btn {
    grid-column: span 3;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu .nav-cta {
    margin: 8px 0 0;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .feature-split,
  .split-layout,
  .split-layout.reverse,
  .dashboard-grid,
  .page-hero-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
    padding: 120px 0 36px;
  }

  .hero-panel {
    max-width: 560px;
  }

  .quick-actions,
  .listings-grid,
  .community-grid,
  .review-grid,
  .resource-card-grid,
  .stats-grid,
  .community-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .row-heading {
    display: grid;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .section,
  .page-hero {
    padding: 58px 0;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.5rem;
  }

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

  .form-grid.two,
  .property-search,
  .quick-actions,
  .card-grid,
  .ai-grid,
  .listings-grid,
  .community-grid,
  .check-list,
  .mini-grid,
  .pipeline,
  .automation-list,
  .resource-grid,
  .footer-grid,
  .review-grid,
  .resource-card-grid,
  .stats-grid,
  .community-detail-grid,
  .community-detail-grid article {
    grid-template-columns: 1fr;
  }

  .property-search .btn {
    grid-column: auto;
  }

  .hero-panel,
  .lead-box {
    padding: 18px;
  }

  .media-card img {
    min-height: 300px;
  }

  .page-hero img {
    aspect-ratio: 1 / 0.78;
  }

  .community-detail-grid img {
    min-height: 210px;
  }
}
