:root {
      --color-primary: #0d1b2a; /* dark navy */
      --color-secondary: #1b263b; /* darker background */
      --color-accent: #c7322b; /* subtle red */
      --color-light: #f7f9fc; /* light background */
      --color-grey: #e5e9f0; /* grey for borders */
      --color-text: #1a1a1a;
      --max-width: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      color: var(--color-text);
      background-color: var(--color-light);
    }

    header {
      background: var(--color-primary);
      color: white;
      padding: 1rem;
    }

    header nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      max-width: var(--max-width);
      margin: 0 auto;
    }

    header nav a {
      color: white;
      margin-right: 1rem;
      text-decoration: none;
      font-weight: 500;
    }

    header nav a:hover {
      text-decoration: underline;
    }.cta-button {
      display: inline-block;
      background: var(--color-accent);
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: bold;
      margin-right: 0.5rem;
    }.cta-button:hover {
      background: #a52823;
    }

    main {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 1.5rem;
    }

    footer {
      background: var(--color-secondary);
      color: white;
      padding: 2rem 1rem;
    }

    footer a {
      color: #e5e9f0;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }.hero {
      padding: 2rem 1rem;
      text-align: center;
    }.hero h1 {
      margin-top: 0;
      font-size: 2rem;
      color: var(--color-primary);
    }.hero p {
      font-size: 1.1rem;
      margin-bottom: 1.2rem;
    }.section {
      margin: 2rem 0;
    }.section h2 {
      margin-top: 0;
      color: var(--color-primary);
      border-bottom: 2px solid var(--color-grey);
      padding-bottom: 0.5rem;
    }.trust-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      background: var(--color-secondary);
      color: white;
      padding: 1rem;
      border-radius: 4px;
    }.trust-item {
      flex: 1 1 200px;
      margin: 0.5rem 0;
      text-align: center;
    }.service-list {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }.service-card {
      flex: 1 1 280px;
      border: 1px solid var(--color-grey);
      border-radius: 4px;
      padding: 1rem;
      background: white;
    }.service-card h3 {
      margin-top: 0;
      color: var(--color-primary);
    }.faq {
      margin-top: 1rem;
    }.faq-item {
      border-bottom: 1px solid var(--color-grey);
    }.faq-item button {
      width: 100%;
      text-align: left;
      padding: 0.8rem;
      background: none;
      border: none;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      color: var(--color-primary);
    }.faq-item button:hover {
      color: var(--color-accent);
    }.faq-item.answer {
      display: none;
      padding: 0 0.8rem 1rem;
      font-size: 0.95rem;
    }.faq-item.open.answer {
      display: block;
    }.card-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }.card {
      flex: 1 1 220px;
      border: 1px solid var(--color-grey);
      border-radius: 4px;
      padding: 1rem;
      background: white;
    }.card h3 {
      margin-top: 0;
      color: var(--color-primary);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      header nav {
        flex-direction: column;
        align-items: flex-start;
      }.trust-bar {
        flex-direction: column;
      }
    }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

input,
select,
textarea {
  border: 1px solid var(--color-grey);
  border-radius: 4px;
  font: inherit;
}

#form-status {
  margin-top: 0.75rem;
  font-weight: 600;
}

@media (max-width: 768px) {.nav-links,.nav-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }
}

@media print {
  header,
  footer,.cta-button {
    display: none!important;
  }

  body {
    background: white;
    color: black;
  }

  main {
    max-width: none;
    padding: 0;
  }
}.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}.cta-button[data-conversion="pricing_cta_click"] {
  background: #ffffff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}.cta-button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}


body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fbf8f3;
  color: #17202a;
}.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  color: #17202a;
  border-bottom: 1px solid #eadfd2;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.06);
  backdrop-filter: blur(12px);
}.site-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #17202a;
  text-decoration: none;
  min-width: 230px;
}.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #0d1b2a;
  color: #fff;
  font-weight: 800;
}.brand strong,.brand small {
  display: block;
  line-height: 1.15;
}.brand small {
  margin-top: 0.2rem;
  color: #66717f;
  font-size: 0.78rem;
}.site-nav.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}.site-nav a {
  color: #17202a;
  margin: 0;
}.site-nav.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
}

main {
  max-width: none;
  padding: 0;
}.section,.hero,.trust-bar {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}.section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}.section h2,.hero h1 {
  color: #0d1b2a;
  letter-spacing: 0;
}.section h2 {
  border: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  max-width: 820px;
  padding-bottom: 0;
}.section > p:not(.eyebrow) {
  max-width: 760px;
  color: #4d5966;
  font-size: 1.08rem;
}.eyebrow {
  margin: 0 0 0.85rem;
  color: #a8322b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}.hero-premium,.city-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 3rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
  text-align: left;
}.hero {
  background: radial-gradient(circle at 92% 10%, rgba(199, 50, 43, 0.08), transparent 32%), linear-gradient(180deg, #fffaf3, #fbf8f3);
}.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: 0.98;
}.hero-subtitle,.hero p {
  max-width: 670px;
  color: #4d5966;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.5rem;
}.cta-button,.site-nav.cta-button {
  border-radius: 7px;
  border: 1px solid transparent;
  padding: 0.78rem 1.08rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.12);
  text-decoration: none;
}.cta-primary,.cta-button[data-conversion="rental_assessment_click"],.cta-button[data-conversion="lead_form_submit"] {
  background: #b8322a;
  color: #fff;
}.cta-secondary {
  background: #fff;
  color: #0d1b2a;
  border-color: #d9cfc2;
}.cta-tertiary,.cta-button[data-conversion="pricing_cta_click"] {
  background: #0d1b2a;
  color: #fff;
  border-color: #0d1b2a;
}.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}.trust-badges span {
  border: 1px solid #eadfd2;
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: #4d5966;
  font-weight: 700;
  font-size: 0.9rem;
}.dashboard-card {
  background: #fff;
  border: 1px solid #eadfd2;
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: 0 24px 60px rgba(13, 27, 42, 0.12);
}.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #66717f;
  font-weight: 800;
}.dashboard-topline strong {
  color: #b8322a;
  font-size: 3rem;
}.dashboard-rate {
  margin: 0.5rem 0 1rem;
  color: #17202a;
  font-weight: 800;
}.dashboard-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}.dashboard-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
}.dashboard-list span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b8322a;
  flex: 0 0 auto;
}.premium-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #0d1b2a;
  color: #fff;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}.premium-trust div {
  padding: 1.15rem;
  border-right: 1px solid rgba(255,255,255,0.14);
}.premium-trust span {
  display: block;
  margin-top: 0.25rem;
  color: #cfd6df;
  font-size: 0.9rem;
}.card-grid {
  display: grid;
  gap: 1rem;
}.premium-grid,.service-grid,.city-grid,.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}.pm-card,.card,.service-card {
  background: #fff;
  border: 1px solid #eadfd2;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.06);
}.pm-card h3,.card h3,.service-card h3 {
  color: #0d1b2a;
  margin-top: 0;
  font-size: 1.15rem;
}.pm-card p,.card p,.service-card p {
  color: #596574;
}.pm-card a,.city-card a,.article-grid a {
  color: #a8322b;
  font-weight: 800;
}.icon-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff2ec;
  margin-bottom: 0.85rem;
}.pricing-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
  background: #fff;
  border-top: 1px solid #eadfd2;
  border-bottom: 1px solid #eadfd2;
}.included-card {
  background: #0d1b2a;
  color: #fff;
  border-radius: 8px;
  padding: 1.35rem;
}.included-card h3 {
  margin-top: 0;
}.included-card ul,.compliance-panel ul,.pain-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}.included-card li,.compliance-panel li,.pain-panel li {
  margin-bottom: 0.55rem;
}.comparison-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}.comparison-strip div {
  background: #fbf8f3;
  border: 1px solid #eadfd2;
  border-radius: 8px;
  padding: 1rem;
}.comparison-strip span {
  display: block;
  margin-top: 0.35rem;
  color: #596574;
}.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}.process-list div {
  background: #fff;
  border: 1px solid #eadfd2;
  border-radius: 8px;
  padding: 1.1rem;
}.process-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #0d1b2a;
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 800;
}.process-list strong {
  display: block;
  color: #0d1b2a;
}.compliance-panel,.pain-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #142235;
  color: #fff;
  border-radius: 8px;
  padding: 3rem;
}.compliance-panel h2,.pain-panel h2,.compliance-panel p,.pain-panel p {
  color: #fff;
}.compliance-panel.eyebrow,.pain-panel.eyebrow {
  color: #ffb4a8;
}.final-cta {
  text-align: center;
  background: #fffaf3;
}.final-cta h2,.final-cta p {
  margin-left: auto;
  margin-right: auto;
}.final-cta.cta-row {
  justify-content: center;
}.faq {
  background: #fff;
  border: 1px solid #eadfd2;
  border-radius: 8px;
  overflow: hidden;
}.faq-item button {
  padding: 1rem 1.1rem;
}.faq-item.answer {
  color: #596574;
}.nearby-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}.nearby-links a {
  background: #fff;
  border: 1px solid #eadfd2;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  font-weight: 800;
}.site-footer {
  background: #0d1b2a;
  color: #fff;
  padding: 3rem 1.5rem 1.5rem;
}.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2rem;
}.site-footer a {
  color: #e9eef4;
}.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  color: #cfd6df;
}

@media (max-width: 920px) {.site-nav {
    align-items: flex-start;
    flex-direction: column;
  }.site-nav.nav-links,.nav-ctas {
    flex-wrap: wrap;
  }.hero-premium,.city-hero,.pricing-feature,.compliance-panel,.pain-panel,.comparison-strip,.footer-grid {
    grid-template-columns: 1fr;
  }.premium-grid,.service-grid,.city-grid,.article-grid,.process-list,.premium-trust {
    grid-template-columns: 1fr;
  }.section,.hero,.trust-bar {
    padding-left: 1rem;
    padding-right: 1rem;
  }.hero-premium,.city-hero {
    padding-top: 3rem;
  }.hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }.brand {
    min-width: 0;
  }
}:root {
  --pm-bg: #ffffff;
  --pm-bg-warm: #fbf8f3;
  --pm-ink: #111827;
  --pm-navy: #0d1b2a;
  --pm-muted: #596574;
  --pm-border: #eadfd2;
  --pm-accent: #b8322a;
  --pm-shadow: 0 24px 60px rgba(13, 27, 42, 0.12);
  --pm-radius: 8px;
  --space-section: clamp(3.5rem, 7vw, 6rem);
}.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex: 1;
}.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #d9cfc2;
  border-radius: 8px;
  background: #fff;
  padding: 0.65rem;
}.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: #0d1b2a;
  margin: 5px 0;
}.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0;
}.metric-grid div {
  background: #fbf8f3;
  border: 1px solid #eadfd2;
  border-radius: 8px;
  padding: 0.85rem;
}.metric-grid span,.status-stack em {
  display: block;
  color: #66717f;
  font-size: 0.78rem;
  font-style: normal;
}.metric-grid strong {
  display: block;
  color: #0d1b2a;
  margin-top: 0.25rem;
  font-size: 1.15rem;
}.status-stack {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0;
}.status-stack div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0.65rem;
  align-items: center;
  background: #fff;
  border: 1px solid #eadfd2;
  border-radius: 8px;
  padding: 0.85rem;
}.status-stack em {
  grid-column: 2;
}.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}.status-dot.green { background: #188a5a; }.status-dot.amber { background: #c47c20; }.status-dot.red { background: #b8322a; }.mini-chart {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 0.55rem;
  padding: 0.85rem;
  border: 1px solid #eadfd2;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbf8f3);
}.mini-chart span {
  flex: 1;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, #b8322a, #0d1b2a);
  opacity: 0.88;
}.dashboard-note {
  color: #596574;
  font-size: 0.95rem;
  margin-bottom: 0;
}.pricing-details {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid #eadfd2;
  border-radius: 8px;
  padding: 1rem;
}.pricing-details summary {
  cursor: pointer;
  color: #0d1b2a;
  font-weight: 900;
}.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}.detail-grid span {
  background: #fbf8f3;
  border: 1px solid #eadfd2;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  color: #596574;
  font-weight: 700;
}

@media (max-width: 920px) {.site-nav {
    display: grid;
    grid-template-columns: 1fr auto;
  }.menu-toggle {
    display: block;
  }.nav-panel {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 0.85rem;
    border-top: 1px solid #eadfd2;
    margin-top: 0.85rem;
  }.nav-panel.is-open {
    display: grid;
    gap: 0.8rem;
  }.site-nav.nav-links,.nav-ctas {
    display: grid;
    gap: 0.55rem;
    width: 100%;
  }.site-nav.nav-links a,.nav-ctas a {
    width: 100%;
  }.detail-grid {
    grid-template-columns: 1fr;
  }
}.human-hero-visual {
  position: relative;
  min-height: 520px;
}.image-placeholder {
  min-height: 220px;
  border-radius: 8px;
  border: 1px solid #eadfd2;
  background:
    linear-gradient(135deg, rgba(184, 50, 42, 0.10), rgba(13, 27, 42, 0.04)),
    repeating-linear-gradient(45deg, #fffaf3, #fffaf3 12px, #f4eee6 12px, #f4eee6 24px);
  position: relative;
  overflow: hidden;
}.image-placeholder::after {
  content: "Photo placeholder";
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: #5b6470;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #eadfd2;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
}.hero-photo {
  min-height: 480px;
  box-shadow: 0 24px 60px rgba(13, 27, 42, 0.12);
}.owner-update-card {
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  width: min(280px, 78%);
  display: grid;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid #eadfd2;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.14);
}.owner-update-card strong {
  color: #0d1b2a;
}.owner-update-card span {
  color: #596574;
  font-size: 0.95rem;
}.support-chip {
  position: absolute;
  right: -0.75rem;
  background: #0d1b2a;
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.14);
}.chip-one { top: 2rem; }.chip-two { top: 5.4rem; background: #b8322a; }.warm-section {
  background: #fff;
  border-top: 1px solid #eadfd2;
  border-bottom: 1px solid #eadfd2;
}.warm-card,.pain-card,.property-image-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}.warm-card:hover,.pain-card:hover,.property-image-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 50, 42, 0.3);
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.10);
}.image-placeholder.small {
  min-height: 110px;
  margin-bottom: 1rem;
}.pain-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}.pain-card {
  padding: 1rem;
}.pain-card h3 {
  font-size: 1rem;
}.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}.property-image-card {
  background: #fff;
  border: 1px solid #eadfd2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.06);
}.property-image-card > div:last-child {
  padding: 1.15rem;
}.property-image-card h3 {
  margin-top: 0;
  color: #0d1b2a;
}.property-image-card p {
  color: #596574;
}.property-image-card a {
  color: #a8322b;
  font-weight: 800;
}.map-pin {
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  background: #fff2ec;
  border: 1px solid #f0c8bf;
  margin-bottom: 1rem;
}.map-pin::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #b8322a;
  margin: 14px;
}.soft-pricing {
  margin-top: 0;
}.soft-pricing.included-card {
  background: #fffaf3;
  color: #0d1b2a;
  border: 1px solid #eadfd2;
}

@media (max-width: 920px) {.human-hero-visual {
    min-height: 390px;
  }.hero-photo {
    min-height: 340px;
  }.owner-update-card {
    left: 1rem;
    bottom: 1rem;
  }.support-chip {
    right: 0.75rem;
  }.pain-grid,.property-grid {
    grid-template-columns: 1fr;
  }
}


img {
  max-width: 100%;
  height: auto;
}.hero-photo,.card-image,.city-image,.support-photo {
  margin: 0;
  overflow: hidden;
  background: #f4eee6;
  border-radius: 8px;
}.hero-photo {
  aspect-ratio: 4 / 5;
  border: 1px solid #eadfd2;
  box-shadow: 0 24px 60px rgba(13, 27, 42, 0.12);
}.hero-photo img,.card-image img,.city-image img,.support-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}.warm-card:hover img,.property-image-card:hover img,.city-card:hover img,.human-hero-visual:hover.hero-photo img {
  transform: scale(1.035);
}.card-image.small {
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
}.card-image.large {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px 8px 0 0;
}.card-image figcaption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  background: rgba(13, 27, 42, 0.84);
  color: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
}.city-image {
  aspect-ratio: 16 / 9;
  margin: -1.25rem -1.25rem 1rem;
  border-radius: 8px 8px 0 0;
}.city-card {
  position: relative;
  overflow: hidden;
}.city-card.map-pin {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255, 242, 236, 0.94);
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.12);
}.human-support-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border-top: 1px solid #eadfd2;
  border-bottom: 1px solid #eadfd2;
}.support-photo {
  aspect-ratio: 16 / 11;
  border: 1px solid #eadfd2;
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.10);
}.pain-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff2ec, #ffffff);
  border: 1px solid #f0c8bf;
  margin-bottom: 0.8rem;
}

@media (max-width: 920px) {.human-support-section {
    grid-template-columns: 1fr;
  }.hero-photo {
    aspect-ratio: 4 / 3;
  }.city-image {
    margin: -1.25rem -1.25rem 1rem;
  }
}.brand {
  min-width: 310px;
}.brand-logo {
  width: 190px;
  height: auto;
  display: block;
  object-fit: contain;
}.brand-text {
  display: none;
}.footer-logo {
  width: min(300px, 100%);
  height: auto;
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 0.6rem;
  margin-bottom: 1rem;
}.murphy-link-section {
  background: #fff;
  border-top: 1px solid #eadfd2;
}

@media (max-width: 920px) {.brand {
    min-width: 0;
  }.brand-logo {
    width: 154px;
  }
}
