:root {
  --paper: #fbfaf7;
  --surface: #ffffff;
  --mist: #e5edf0;
  --sage: #e7efe5;
  --forest: #24584a;
  --forest-dark: #163a32;
  --clay: #b86f49;
  --amber: #d7a34f;
  --ink: #202624;
  --muted: #66716d;
  --line: #d8d8cf;
  --shadow: 0 20px 50px rgba(25, 34, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  min-height: 74px;
  padding: 12px 38px;
  border-bottom: 1px solid rgba(216, 216, 207, 0.85);
  background: rgba(251, 250, 247, 0.95);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: white;
  font-weight: 800;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a,
.footer-links a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
}

.site-nav a {
  padding: 10px 12px;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--sage);
  color: var(--forest-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: var(--forest-dark);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--forest);
  border-radius: 8px;
  background: var(--forest);
  color: white;
  font: inherit;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--forest-dark);
}

.btn-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.82);
  color: var(--forest-dark);
}

.btn-light:hover {
  background: white;
}

.btn-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--forest-dark);
}

.btn-secondary:hover {
  border-color: var(--forest);
  background: var(--sage);
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--forest-dark);
  font: inherit;
  font-weight: 700;
}

.hero {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(20, 35, 30, 0.74) 0%, rgba(20, 35, 30, 0.58) 38%, rgba(20, 35, 30, 0.16) 70%),
    url("assets/hero-apartment.jpg") center / cover;
  color: white;
}

.hero-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 96px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c077;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1.02;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.14;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

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

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

.trust-item {
  min-height: 178px;
  padding: 28px;
  background: var(--surface);
}

.trust-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 850;
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.trust-item p,
.section-head p,
.split p,
.page-hero p,
.card p,
.site-footer p,
.request-form p,
.contact-panel p {
  color: var(--muted);
}

.section {
  padding: 88px 38px;
}

.section-light {
  background: var(--surface);
}

.section-muted {
  background: var(--mist);
}

.section-head {
  width: min(780px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.service-grid,
.listing-grid,
.review-grid,
.article-grid,
.service-detail-grid,
.team-grid,
.case-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 20px;
}

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

.listing-grid,
.article-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.team-grid,
.case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid,
.media-template-grid,
.district-grid,
.template-board {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 20px;
}

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

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

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

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

.template-board-three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(33, 38, 35, 0.06);
  overflow: hidden;
}

.service-card,
.article-card,
.review-card,
.service-detail,
.team-card,
.case-card {
  padding: 24px;
}

.service-code,
.article-card span,
.review-card span,
.case-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card a,
.listing-card a,
.article-card a,
.contact-links a,
.contact-links span {
  color: var(--forest-dark);
  font-weight: 800;
  text-decoration: none;
}

.service-card a:hover,
.listing-card a:hover,
.article-card a:hover,
.contact-links a:hover {
  color: var(--clay);
}

.request-form a,
.legal-page a {
  color: var(--forest-dark);
  font-weight: 800;
}

.split {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

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

.mini-team {
  display: grid;
  gap: 14px;
}

.team-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.team-chip p,
.team-card p,
.case-card p,
.metric-card span,
.document-list,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: white;
  font-weight: 850;
}

.avatar-clay {
  background: var(--clay);
}

.avatar-amber {
  background: var(--amber);
  color: var(--forest-dark);
}

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

.metric-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.metric-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--forest-dark);
  font-size: 28px;
  line-height: 1.1;
}

.team-card ul,
.document-list,
.legal-page ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.team-card li + li,
.document-list li + li,
.legal-page li + li {
  margin-top: 8px;
}

.case-card {
  min-height: 220px;
}

.proof-card,
.district-card,
.template-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(33, 38, 35, 0.06);
}

.proof-shot {
  display: grid;
  min-height: 220px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px dashed rgba(36, 88, 74, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 239, 229, 0.75), rgba(255, 255, 255, 0.6)),
    var(--sage);
  color: var(--forest-dark);
  font-weight: 850;
}

.proof-card p,
.district-card p,
.template-card li,
.media-template {
  color: var(--muted);
}

.district-card strong,
.proof-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--forest-dark);
  font-size: 19px;
}

.media-template {
  display: grid;
  min-height: 160px;
  place-items: center;
  padding: 18px;
  border: 1px dashed rgba(36, 88, 74, 0.45);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 850;
  text-align: center;
}

.image-template {
  background:
    linear-gradient(135deg, rgba(36, 88, 74, 0.08), rgba(255, 255, 255, 0.7)),
    var(--surface);
}

.doc-template {
  background:
    linear-gradient(135deg, rgba(215, 163, 79, 0.14), rgba(255, 255, 255, 0.72)),
    var(--surface);
}

.template-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.template-card h2,
.template-card h3 {
  margin-bottom: 12px;
}

.template-card p {
  color: var(--muted);
}

.template-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.template-card li + li {
  margin-top: 8px;
}

.price-note {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--sage);
  color: var(--forest-dark) !important;
  font-weight: 800;
}

.object-hints {
  margin-bottom: 28px;
}

.template-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.template-card li + li {
  margin-top: 8px;
}

.document-list {
  padding: 24px 24px 24px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.legal-page {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(33, 38, 35, 0.06);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 25px;
}

.legal-page h2:first-of-type {
  margin-top: 22px;
}

.legal-note {
  padding: 18px;
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  background: var(--sage);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li,
.wide-steps li {
  position: relative;
  min-height: 92px;
  padding: 20px 22px 20px 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.timeline li::before,
.wide-steps li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: white;
  content: counter(step);
  counter-increment: step;
  font-weight: 800;
}

.timeline strong,
.wide-steps strong {
  display: block;
  margin-bottom: 4px;
}

.timeline span,
.wide-steps span {
  color: var(--muted);
}

.listing-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.listing-body {
  padding: 22px;
}

.listing-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
}

.listing-topline strong {
  color: var(--forest-dark);
  white-space: nowrap;
}

.review-card {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(231, 239, 229, 0.55), rgba(255, 255, 255, 0) 46%),
    var(--surface);
}

.review-card p {
  font-size: 18px;
}

.review-card strong {
  display: block;
  color: var(--forest-dark);
}

.article-card {
  min-height: 230px;
}

.cta-section {
  display: flex;
  width: min(1120px, calc(100% - 76px));
  margin: 72px auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  border-radius: 8px;
  background: var(--forest-dark);
  color: white;
}

.cta-section p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 76px 38px 58px;
  background:
    linear-gradient(90deg, rgba(231, 239, 229, 0.9), rgba(255, 255, 255, 0.58)),
    var(--sage);
  text-align: center;
}

.page-hero h1 {
  margin-right: auto;
  margin-left: auto;
  color: var(--forest-dark);
  font-size: 50px;
}

.page-hero p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  font-size: 18px;
}

.object-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: stretch;
  padding: 54px 38px;
  background: var(--surface);
}

.object-copy {
  align-self: center;
  max-width: 620px;
  margin-left: auto;
}

.object-copy p {
  color: var(--muted);
  font-size: 18px;
}

.object-photo {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.price-line {
  display: grid;
  gap: 4px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sage);
}

.price-line strong {
  color: var(--forest-dark);
  font-size: 30px;
  line-height: 1.1;
}

.price-line span {
  color: var(--muted);
}

.object-layout,
.article-layout {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.object-main,
.object-sidebar,
.article-content,
.article-sidebar {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.object-main h2,
.article-content h2 {
  margin-top: 34px;
  font-size: 26px;
}

.object-main h2:first-child,
.article-content h2:first-child {
  margin-top: 0;
}

.object-main p,
.article-content p,
.article-content li,
.check-list li {
  color: var(--muted);
}

.object-sidebar,
.article-sidebar {
  position: sticky;
  top: 94px;
}

.detail-facts {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.detail-facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.detail-facts dt {
  color: var(--muted);
}

.detail-facts dd {
  margin: 0;
  color: var(--forest-dark);
  font-weight: 800;
  text-align: right;
}

.check-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.check-list li + li {
  margin-top: 9px;
}

.article-hero {
  padding: 76px 38px 58px;
  background:
    linear-gradient(135deg, rgba(231, 239, 229, 0.95), rgba(255, 255, 255, 0.72)),
    var(--sage);
  text-align: center;
}

.article-hero h1,
.article-hero p {
  margin-right: auto;
  margin-left: auto;
}

.article-hero h1 {
  color: var(--forest-dark);
  font-size: 50px;
}

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

.article-content ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.not-found-hero {
  min-height: 520px;
  display: grid;
  align-content: center;
}

.centered-actions {
  justify-content: center;
}

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

.service-detail ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-detail li + li {
  margin-top: 8px;
}

.wide-steps {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  list-style: none;
  counter-reset: step;
}

.wide-steps li {
  padding-right: 18px;
}

.faq-list {
  display: grid;
  width: min(900px, 100%);
  margin: 0 auto;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.faq-list summary {
  padding: 18px 22px;
  color: var(--forest-dark);
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  width: min(1120px, 100%);
  margin: 0 auto 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--forest-dark);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

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

.listing-card.is-hidden {
  display: none;
}

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

.facts div {
  padding: 10px;
  border-radius: 8px;
  background: var(--sage);
}

.facts dt {
  color: var(--muted);
  font-size: 12px;
}

.facts dd {
  margin: 0;
  color: var(--forest-dark);
  font-weight: 800;
}

.article-grid-expanded {
  grid-template-columns: repeat(3, 1fr);
}

.feature-article {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(36, 88, 74, 0.08), rgba(215, 163, 79, 0.12)),
    var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
}

.contact-panel,
.request-form {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.map-placeholder {
  display: grid;
  min-height: 230px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(216, 216, 207, 0.9) 1px, transparent 1px),
    linear-gradient(rgba(216, 216, 207, 0.9) 1px, transparent 1px),
    var(--mist);
  background-size: 42px 42px;
  color: var(--forest-dark);
  font-weight: 850;
}

.request-form {
  display: grid;
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--forest-dark);
  font-weight: 750;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 3px solid rgba(215, 163, 79, 0.32);
  border-color: var(--forest);
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-weight: 750;
}

.form-status.is-success {
  color: var(--forest-dark);
}

.form-status.is-error {
  color: #9b2f24;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 38px;
  border-top: 1px solid var(--line);
  background: #f4f1ea;
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
}

.footer-links a:hover {
  color: var(--forest-dark);
}

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

  .site-nav {
    position: absolute;
    top: 73px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions {
    justify-self: end;
  }

  .service-grid,
  .wide-steps,
  .article-grid-expanded,
  .team-grid,
  .case-grid,
  .proof-grid,
  .district-grid,
  .media-template-grid,
  .template-board,
  .template-board-three {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split-reverse,
  .contact-layout,
  .object-hero,
  .object-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .object-copy {
    max-width: none;
    margin-left: 0;
  }

  .object-sidebar,
  .article-sidebar {
    position: static;
  }

  .wide-steps li {
    min-height: 110px;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 66px;
    padding: 10px 18px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-actions {
    display: none;
  }

  .site-nav {
    top: 65px;
  }

  .hero {
    min-height: 520px;
    background:
      linear-gradient(180deg, rgba(20, 35, 30, 0.8) 0%, rgba(20, 35, 30, 0.58) 58%, rgba(20, 35, 30, 0.18) 100%),
      url("assets/hero-apartment.jpg") center / cover;
  }

  .hero-inner {
    width: min(100% - 32px, 1120px);
    padding: 76px 0 70px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section {
    padding: 64px 18px;
  }

  .page-hero {
    padding: 56px 18px 42px;
  }

  .object-hero,
  .article-hero {
    padding: 56px 18px 42px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .article-hero h1 {
    font-size: 38px;
  }

  .object-photo {
    min-height: 280px;
  }

  .trust-strip,
  .service-grid,
  .listing-grid,
  .review-grid,
  .article-grid,
  .service-detail-grid,
  .team-grid,
  .case-grid,
  .proof-grid,
  .district-grid,
  .media-template-grid,
  .template-board,
  .template-board-three,
  .metric-grid,
  .listing-grid-expanded,
  .wide-steps {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding: 24px;
  }

  .object-main,
  .object-sidebar,
  .article-content,
  .article-sidebar {
    padding: 24px;
  }

  .feature-article {
    grid-column: auto;
  }

  .cta-section {
    width: calc(100% - 36px);
    margin: 48px auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
  }

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

  .site-footer {
    flex-direction: column;
    padding: 34px 18px;
  }
}

@media (max-width: 460px) {
  .brand strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 36px;
  }

  .page-hero h1 {
    font-size: 33px;
  }

  .article-hero h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 25px;
  }

  .hero-actions,
  .filter-bar,
  .team-chip {
    display: grid;
  }

  .btn,
  .filter-btn {
    width: 100%;
  }
}
