﻿:root {
  --navy: #143553;
  --navy-dark: #091c2f;
  --gold: #b9975b;
  --gold-soft: #e4d0a5;
  --gray-50: #f7f8fa;
  --gray-100: #edf0f3;
  --gray-700: #526171;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(9, 28, 47, 0.14);
  --radius: 8px;
  --max: 1160px;
  --home-photo: linear-gradient(rgba(13, 35, 55, 0.55), rgba(13, 35, 55, 0.55));
  --selling-photo: linear-gradient(rgba(13, 35, 55, 0.55), rgba(13, 35, 55, 0.55));
  --buying-photo: linear-gradient(rgba(13, 35, 55, 0.55), rgba(13, 35, 55, 0.55));
  --about-photo: linear-gradient(rgba(13, 35, 55, 0.55), rgba(13, 35, 55, 0.55));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--navy-dark);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

main {
  flex: 1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(9, 28, 47, 0.08);
}

.navbar {
  width: min(var(--max), calc(100% - 40px));
  min-height: 98px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  min-width: 0;
}

.brand img {
  width: auto;
  max-width: 475px;
  height: 88px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--gray-100);
  transform: translateY(-1px);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  isolation: isolate;
  background-position: center;
  background-size: cover;
}

.page-hero {
  min-height: 520px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(9, 28, 47, 0.82), rgba(9, 28, 47, 0.48), rgba(9, 28, 47, 0.18));
}

.hero-home {
  background-image: var(--home-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-video {
  min-height: 80vh;
  overflow: hidden;
  background: var(--navy-dark);
}

.selling-video-hero {
  min-height: 85vh;
  background: var(--navy-dark);
}

.hero-video::before {
  display: none;
}

.hero-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.42);
}

.selling-video-hero .hero-video-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.buying-video-hero .hero-video-overlay,
.about-video-hero .hero-video-overlay,
.realtors-video-hero .hero-video-overlay {
  background: rgba(0, 0, 0, 0.44);
}

.hero-video .hero-content {
  position: relative;
  z-index: 1;
}

.hero-video.hero-home,
.hero-video.hero-selling,
.hero-video.hero-buying,
.hero-video.hero-realtors {
  background-image: none !important;
  background-color: var(--navy-dark);
}
.hero-selling {
  background-image: var(--selling-photo);
}

.hero-buying {
  background-image: var(--buying-photo);
}

.hero-about {
  background-image: var(--about-photo);
}

.hero-realtors {
  background-image: var(--home-photo);
}

.hero-content {
  width: min(720px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  padding: 86px 0;
  color: var(--white);
  animation: fadeUp 700ms ease both;
}

.hero-centered {
  text-align: center;
}

.hero-centered .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-centered h1 {
  text-align: center;
}

.hero-centered .hero-content p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-centered .button-row {
  justify-content: center;
}

.hero-logo{
width:860px;
max-width:94vw;
height:auto;
display:block;
margin:0 auto 28px auto;
position:relative;
z-index:5;
}

.welcome-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.welcome-copy {
  display: grid;
  gap: 16px;
}

.welcome-copy p {
  margin: 0;
  color: var(--gray-700);
  font-size: 1.08rem;
}

.welcome-copy p:last-child {
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  background: var(--gray-50);
  color: var(--navy);
  font-size: 1.22rem;
  font-weight: 900;
}

.full-service-section {
  padding-top: 0;
}

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

.service-grid article {
  padding: 30px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(9, 28, 47, 0.16);
  border-color: rgba(185, 151, 91, 0.35);
}

.service-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #f3ead8;
  color: var(--navy);
  font-weight: 900;
}

.service-grid p {
  color: var(--gray-700);
}

.service-bottom {
  max-width: 860px;
  margin: 34px auto 0;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-size: 1.12rem;
  font-weight: 800;
}

.seller-features {
  padding-bottom: 64px;
}

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

.seller-grid article:last-child {
  grid-column: 1 / -1;
}

.seller-image-band {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 88px max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(9, 28, 47, 0.86), rgba(9, 28, 47, 0.42)),
    linear-gradient(rgba(13, 35, 55, 0.86), rgba(13, 35, 55, 0.86));
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.seller-image-band div {
  max-width: 700px;
}

.seller-image-band h2 {
  color: var(--white);
}

.seller-image-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.buyer-features {
  padding-bottom: 64px;
}

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

.buyer-grid article:last-child {
  grid-column: 1 / -1;
}

.buyer-image-band {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 88px max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(9, 28, 47, 0.86), rgba(9, 28, 47, 0.42)),
    linear-gradient(rgba(13, 35, 55, 0.86), rgba(13, 35, 55, 0.86));
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.buyer-image-band div {
  max-width: 700px;
}

.buyer-image-band h2 {
  color: var(--white);
}

.buyer-image-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.difference-section {
  padding: 100px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--gray-50);
}

.difference-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.difference-inner p:not(.eyebrow) {
  color: var(--gray-700);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.35;
}

.difference-inner .button-row {
  justify-content: center;
}

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

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

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.98;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

h3 {
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(9, 28, 47, 0.18);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.76);
  color: var(--white);
}

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

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
}

.split p,
.cards p,
.process p,
.realtor-content p {
  color: var(--gray-700);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 0;
}

.cards article,
.process article,
.realtor-profile {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cards article,
.process article {
  padding: 32px;
}

.cards article,
.process article,
.path-grid article,
.realtor-profile,
.spotlight-card,
.stats-grid article {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.cards article:hover,
.process article:hover,
.path-grid article:hover,
.realtor-profile:hover,
.spotlight-card:hover,
.stats-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(9, 28, 47, 0.16);
  border-color: rgba(185, 151, 91, 0.35);
}

.cards span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #f3ead8;
  color: var(--navy);
  font-weight: 900;
  font-size: 0.92rem;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 0;
}

.path-grid article {
  min-height: 360px;
  padding: 38px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gray-50), #ffffff);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}

.path-grid p:not(.eyebrow) {
  color: var(--gray-700);
}

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

.value-intro {
  padding-bottom: 54px;
}

.savings-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 88px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--gray-50);
}

.savings-copy {
  max-width: 660px;
}

.savings-copy p:not(.eyebrow),
.savings-card p {
  color: var(--gray-700);
}

.savings-card {
  padding: 42px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.savings-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3ead8;
  color: var(--navy);
  font-weight: 900;
}

.savings-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.how-it-works {
  display: grid;
  gap: 34px;
}

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

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

.step-grid article {
  padding: 28px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.step-grid article:hover,
.savings-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(9, 28, 47, 0.16);
  border-color: rgba(185, 151, 91, 0.35);
}

.step-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #f3ead8;
  color: var(--navy);
  font-weight: 900;
}

.step-grid p {
  color: var(--gray-700);
}

.stats-grid article {
  padding: 28px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stats-grid span {
  display: block;
  color: var(--gray-700);
  font-weight: 800;
}

.local-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--gray-50);
}

.local-showcase-image {
  min-height: 520px;
  background-image: linear-gradient(rgba(13, 35, 55, 0.24), rgba(13, 35, 55, 0.24));
  background-position: center;
  background-size: cover;
}

.local-showcase-copy {
  align-self: center;
  max-width: 620px;
  padding: 72px max(28px, calc((100vw - var(--max)) / 2)) 72px 64px;
}

.local-showcase-copy p:not(.eyebrow) {
  color: var(--gray-700);
}

.realtor-spotlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.realtor-spotlight p:not(.eyebrow),
.spotlight-card span {
  color: var(--gray-700);
}

.spotlight-card {
  min-height: 360px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(9, 28, 47, 0.08), rgba(9, 28, 47, 0.88)),
    url("images/joe-wallman-golf.jpg"),
    linear-gradient(180deg, rgba(9, 28, 47, 0.08), rgba(9, 28, 47, 0.88));
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.spotlight-card h3,
.spotlight-card p,
.spotlight-card span {
  color: var(--white);
}

.spotlight-card p {
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(20, 53, 83, 0.16);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 28px;
  background: var(--navy);
  color: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

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

.process h2 {
  grid-column: 1 / -1;
}

.cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 88px auto;
  padding: 64px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--white);
}

.cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.82);
}

.realtor-directory {
  display: grid;
  gap: 34px;
}

.realtor-profile {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: stretch;
  padding: 28px;
}

.realtor-profile-alt .realtor-photo-wrap {
  order: 2;
}

.realtor-photo-wrap {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray-100);
}

.realtor-photo {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 58% 50%;
}

.realtor-photo-joe {
  object-position: 62% 50%;
}

.realtor-photo-connor {
  object-position: 50% 34%;
}

.realtor-photo-brennan {
  object-position: 50% 38%;
}

.photo-missing {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--gray-100), #f7f3ea);
  color: var(--navy);
}

.realtor-content {
  padding: 14px 8px 14px 0;
}

.realtor-title {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.12rem;
  font-weight: 900;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 26px 0 18px;
  padding: 14px 16px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--gray-50);
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 800;
}

.profile-meta a {
  color: var(--navy);
  text-decoration: none;
}

.profile-meta a:hover {
  color: var(--gold-dark);
}

.site-footer {
  padding: 42px max(20px, calc((100vw - var(--max)) / 2)) 34px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--navy-dark);
  text-align: center;
}

.footer-inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: 84px;
}

.footer-logo-link {
  display: inline-flex;
  justify-content: center;
}

.footer-logo {
  width: clamp(210px, 24vw, 270px);
  height: auto;
  object-fit: contain;
}

.site-footer h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 1.45rem;
}

.site-footer address {
  margin: 0;
  color: var(--gray-700);
  font-style: normal;
  line-height: 1.7;
}

.site-footer address a {
  color: var(--navy);
  font-weight: 900;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 4px;
}

.footer-nav a,
.site-footer address a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a {
  color: var(--navy);
  font-weight: 800;
}

.footer-nav a:hover,
.site-footer address a:hover {
  color: var(--gold);
}

.footer-copy,
.footer-disclaimer {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.92rem;
}

.footer-copy {
  color: var(--navy);
  font-weight: 800;
}

.footer-eho {
  position: absolute;
  right: 0;
  bottom: 0;
}

.equal-housing-logo{
width:130px;
height:auto;
display:block;
}

@media (max-width: 860px) {
  .navbar {
    min-height: 88px;
  }

  .brand img {
    width: auto;
    max-width: 330px;
    height: 72px;
  }

  .nav-toggle-label {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    cursor: pointer;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    content: "";
    position: relative;
  }

  .nav-toggle-label span::before {
    position: absolute;
    top: -7px;
  }

  .nav-toggle-label span::after {
    position: absolute;
    top: 7px;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero,
  .page-hero {
    min-height: 600px;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 auto;
  }

  .split,
  .cards,
  .path-grid,
  .trust-strip,
  .stats-grid,
  .local-showcase,
  .realtor-spotlight,
  .savings-section,
  .step-grid,
  .welcome-section,
  .service-grid,
  .seller-grid,
  .buyer-grid,
  .process,
  .realtor-profile {
    grid-template-columns: 1fr;
  }

  .local-showcase-copy {
    max-width: none;
    padding: 56px 20px;
  }

  .realtor-profile-alt .realtor-photo-wrap {
    order: 0;
  }

  .realtor-photo {
    min-height: 440px;
  }

  .realtor-content {
    padding: 0;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .navbar,
  .section,
  .cta {
    width: calc(100% - 28px);
  }

  .brand img {
    width: auto;
    max-width: 210px;
    height: 62px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.3rem, 14vw, 3.5rem);
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .cta {
    padding: 48px 28px;
  }

  .realtor-profile {
    padding: 18px;
  }

  .realtor-photo {
    min-height: 340px;
    object-position: 62% 50%;
  }

  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer-eho {
    position: static;
    text-align: center;
    margin-top: 8px;
  }

  .equal-housing-logo{
width:130px;
height:auto;
display:block;
}

  .footer-inner {
    padding-bottom: 0;
  }

  .footer-logo {
    width: clamp(170px, 58vw, 220px);
  }
}

