:root {
  --red: #c20012;
  --red-dark: #97000d;
  --ink: #050b11;
  --navy: #06111a;
  --muted: #505b66;
  --line: #e3e6ea;
  --soft: #f6f7f9;
  --white: #fff;
  --shadow: 0 22px 46px rgba(5, 11, 17, .12);
  --wrap: min(1440px, calc(100% - 80px));
  --hero-align: max(40px, calc((100vw - 1440px) / 2));
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.topbar {
  background: #02080d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.topbar .wrap {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header {
  height: 78px;
  background: #fff;
  border-bottom: 1px solid #edf0f3;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  width: 206px;
  flex: 0 0 auto;
}

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

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 29px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s cubic-bezier(.2,.7,.2,1);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 24px;
  border: 1px solid var(--red);
  border-radius: 4px;
  background: #fff;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s cubic-bezier(.2,.7,.2,1), background .22s cubic-bezier(.2,.7,.2,1);
}

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

.button.primary {
  background: linear-gradient(180deg, #d30012, #a8000d);
  color: #fff;
  box-shadow: 0 10px 20px rgba(174, 0, 14, .2);
}

.button.inverse {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.hero {
  background: #fff;
  border-bottom: 1px solid #edf0f3;
}

.hero-stage {
  min-height: 390px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
  align-items: stretch;
}

.hero-copy {
  padding: 42px 0 58px;
  align-self: center;
}

.kicker {
  display: block;
  margin-bottom: 11px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(37px, 3.75vw, 44px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.035em;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.red {
  color: var(--red);
}

.lede,
.copy {
  color: #1c2731;
  font-size: 15px;
  line-height: 1.68;
}

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

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  background: #eef0f2;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.58) 0%, rgba(255,255,255,.18) 28%, rgba(255,255,255,0) 58%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.hero-media.right img {
  object-position: right center;
}

.hero-media.team img {
  object-position: center center;
}

.amy-agent-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-bottom: 0;
  background: #fff;
}

.amy-agent-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 31%, rgba(255,255,255,.5) 52%, rgba(255,255,255,0) 78%),
    url("/assets/images/amy-louisville-skyline-joshua-michaels.webp") center right / cover no-repeat;
}

.amy-hero-stage {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
}

.amy-hero-copy {
  position: relative;
  z-index: 2;
  padding: 48px 0 88px;
}

.amy-hero-copy h1 {
  margin-bottom: 17px;
  font-size: clamp(42px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.amy-hero-copy h1 span {
  display: block;
}

.amy-hero-copy .lede {
  max-width: 370px;
}

.amy-agent-hero .button:not(.primary) {
  border-color: rgba(194, 0, 18, .75);
  color: #101820;
  background: rgba(255,255,255,.86);
}

.amy-hero-cutout {
  position: absolute;
  z-index: 2;
  right: clamp(70px, 13vw, 190px);
  bottom: -395px;
  height: clamp(720px, 64vw, 900px);
  max-width: none;
  filter: drop-shadow(0 18px 26px rgba(5, 11, 17, .25));
}

.page-hero {
  --page-hero-image: url("/assets/images/buyer-hero-kitchen.webp");
  --page-hero-position: right center;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-bottom: 0;
  background: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(72vw, 1040px);
  background: var(--page-hero-image) var(--page-hero-position) / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.12) 9%, rgba(0,0,0,.72) 24%, #000 42%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.12) 9%, rgba(0,0,0,.72) 24%, #000 42%, #000 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 35%, rgba(255,255,255,.94) 45%, rgba(255,255,255,.72) 54%, rgba(255,255,255,.18) 68%, rgba(255,255,255,0) 86%);
  pointer-events: none;
}

.page-hero-buyers {
  --page-hero-image: url("/assets/images/buyer-hero-unsplash-kitchen.webp");
  --page-hero-position: center center;
}

.page-hero-sellers {
  --page-hero-image: url("/assets/images/home-sell-interior.webp");
  --page-hero-position: center center;
}

.page-hero-team {
  --page-hero-image: url("/assets/images/team-pruitt-three-agents-hero.webp");
  --page-hero-position: right center;
}

.page-hero-join {
  --page-hero-image: url("/assets/images/team-pruitt-three-agents.webp");
  --page-hero-position: right center;
}

.page-hero-stage {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.page-hero-copy {
  max-width: 620px;
  padding: 54px 0 72px;
}

.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(50px, 5vw, 68px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.062em;
  text-wrap: balance;
}

.page-hero .lede {
  max-width: 545px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.72;
}

.page-hero .hero-actions {
  gap: 16px;
  margin-top: 30px;
}

.page-hero .button {
  min-height: 58px;
  padding: 0 36px;
  border-radius: 5px;
  font-size: 14px;
}

.home-hero .hero-stage {
  position: relative;
  width: 100%;
  min-height: clamp(620px, calc(100dvh - 180px), 760px);
  padding-left: var(--hero-align);
  margin: 0;
  grid-template-columns: minmax(560px, 38vw) 1fr;
  gap: 36px;
}

.home-hero .hero-copy {
  position: relative;
  z-index: 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 0 210px;
}

.home-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(58px, 5.8vw, 86px);
  line-height: .94;
  letter-spacing: -.066em;
  font-weight: 900;
}

.home-hero .lede {
  max-width: 430px;
  font-size: 20px;
  line-height: 1.62;
  font-weight: 700;
}

.home-hero .hero-media {
  margin-left: -140px;
  min-height: clamp(620px, calc(100dvh - 180px), 760px);
}

.home-hero .hero-media::before {
  background: linear-gradient(90deg, #fff 0%, #fff 13%, rgba(255,255,255,.92) 25%, rgba(255,255,255,.62) 43%, rgba(255,255,255,.13) 68%, rgba(255,255,255,0) 86%);
}

.home-hero .hero-media img {
  min-height: clamp(620px, calc(100dvh - 180px), 760px);
  object-position: center center;
}

.home-hero-actions {
  position: absolute;
  left: var(--hero-align);
  right: 0;
  bottom: 138px;
  z-index: 4;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.home-hero-actions .button {
  min-height: 58px;
  padding: 0 34px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(5,11,17,.12);
}

.home-hero-actions .button.primary {
  min-width: 176px;
}

.home-hero-actions .button:not(.primary) {
  min-width: 196px;
  border-color: #e6e9ed;
  color: #101820;
  background: #fff;
}

.btn-symbol {
  display: inline-block;
  margin-left: 9px;
  font-size: 23px;
  line-height: 0;
  transform: translateY(2px);
}

.buyers-hero {
  overflow: hidden;
  border-bottom: 0;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}

.buyers-hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(440px, .92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: center;
  padding: 58px 0 54px;
}

.breadcrumb {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.buyers-hero-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 4.8vw, 66px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.buyers-hero-copy .lede {
  max-width: 560px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.66;
}

.buyers-hero .hero-actions {
  gap: 14px;
  margin-top: 28px;
}

.buyers-hero .button {
  min-height: 56px;
  padding: 0 34px;
  border-radius: 5px;
  font-size: 14px;
}

.buyers-hero-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 6px;
  background: #dfe4e7;
  box-shadow: 0 24px 58px rgba(5, 11, 17, .16);
}

.buyers-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 17, 0) 38%, rgba(5, 11, 17, .72) 100%),
    linear-gradient(90deg, rgba(5, 11, 17, .06), rgba(5, 11, 17, .18));
  pointer-events: none;
}

.buyers-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
}

.buyers-hero-note {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 5px;
  padding: 20px 22px;
  border-left: 4px solid var(--red);
  background: rgba(6, 17, 26, .88);
  color: #fff;
}

.buyers-hero-note strong {
  font-size: 18px;
  line-height: 1.15;
}

.buyers-hero-note span {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.55;
}

.buyer-proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -24px;
}

.buyer-proof-grid {
  min-height: 102px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 4px;
  background: #06111a;
  color: #fff;
  box-shadow: var(--shadow);
}

.buyer-proof-grid div {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.buyer-proof-grid div:last-child {
  border-right: 0;
}

.buyer-proof-grid strong {
  display: block;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}

.buyer-proof-grid span {
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.buyer-system-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 84px;
  background: #f7f8fa;
}

.buyer-system-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--line);
}

.buyer-section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.buyer-section-head h2,
.buyer-strategy-copy h2,
.buyer-guide-grid h2 {
  font-size: clamp(34px, 3.3vw, 50px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.buyer-section-head .copy {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.62;
}

.buyer-system-board {
  display: grid;
  grid-template-columns: minmax(280px, .38fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.buyer-system-card {
  position: sticky;
  top: 106px;
  overflow: hidden;
  padding: 32px 30px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(194,0,18,.22), transparent 38%),
    var(--navy);
  color: #fff;
  box-shadow: 0 26px 56px rgba(5, 11, 17, .18);
}

.buyer-system-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--red);
}

.buyer-system-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.buyer-system-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.64;
}

.buyer-system-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.buyer-system-meta span {
  display: grid;
  min-height: 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

.buyer-process-grid::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 0%, var(--red) 8%, var(--red) 92%, transparent 100%);
}

.buyer-process-grid article {
  position: relative;
  min-height: 188px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 42px rgba(5, 11, 17, .08);
}

.buyer-process-grid article:nth-child(even) {
  margin-top: 42px;
}

.buyer-process-grid article::before,
.buyer-process-grid article::after {
  content: "";
  position: absolute;
  top: 42px;
}

.buyer-process-grid article::before {
  width: 28px;
  height: 2px;
  background: var(--red);
}

.buyer-process-grid article::after {
  width: 18px;
  height: 18px;
  border: 4px solid var(--red);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(194,0,18,.08);
}

.buyer-process-grid article:nth-child(odd)::before {
  right: -28px;
}

.buyer-process-grid article:nth-child(even)::before {
  left: -28px;
}

.buyer-process-grid article:nth-child(odd)::after {
  right: -36px;
}

.buyer-process-grid article:nth-child(even)::after {
  left: -36px;
}

.buyer-process-grid span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 12px 24px rgba(194, 0, 18, .22);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
}

.buyer-process-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.035em;
}

.buyer-process-grid p {
  margin: 0;
  color: #303a44;
  font-size: 14px;
  line-height: 1.62;
}

.buyer-process-grid small {
  display: block;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid #edf0f3;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.buyer-strategy-section {
  padding-top: 24px;
}

.buyer-strategy-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, .8fr);
  gap: 58px;
  align-items: center;
}

.buyer-photo-panel {
  overflow: hidden;
  border-radius: 6px;
  background: #eef0f2;
  box-shadow: 0 18px 44px rgba(5, 11, 17, .09);
}

.buyer-photo-panel img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.buyer-strategy-copy .copy,
.buyer-resource-section .copy {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.72;
}

.buyer-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.buyer-feature-grid div {
  min-height: 172px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.buyer-feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

.buyer-feature-grid strong,
.buyer-feature-grid span {
  display: block;
}

.buyer-feature-grid strong {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.buyer-feature-grid span {
  color: #39434d;
  font-size: 13px;
  line-height: 1.5;
}

.buyer-resource-section {
  padding: 84px 0 82px;
  background: #fff;
}

.buyer-resource-hero {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
}

.first-time-copy {
  position: relative;
  max-width: 620px;
  padding: 0;
  color: var(--ink);
}

.resource-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(194,0,18,.18);
  border-radius: 4px;
  background: #fff5f6;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
}

.first-time-copy h2,
.community-showcase h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.052em;
  text-transform: uppercase;
}

.first-time-copy h2 {
  max-width: 620px;
  color: var(--ink);
}

.first-time-copy p {
  max-width: 540px;
  margin-bottom: 28px;
  color: #1d2730;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 800;
  line-height: 1.42;
}

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

.resource-check-list li {
  display: flex;
  align-items: center;
  color: #1c2731;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 900;
  line-height: 1.25;
}

.resource-check-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  margin-right: 14px;
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(194, 0, 18, .18);
}

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

.resource-actions .button {
  min-height: 46px;
  padding: 0 24px;
}

.resource-secondary {
  border-color: #cfd5db;
  background: #fff;
  color: var(--ink);
}

.resource-secondary:hover {
  background: #f7f8fa;
}

.first-time-image {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 6px;
  background: #eef0f2;
  box-shadow: 0 24px 58px rgba(5, 11, 17, .12);
}

.first-time-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  background:
    linear-gradient(180deg, rgba(5,11,17,0) 48%, rgba(5,11,17,.16) 100%);
  pointer-events: none;
}

.first-time-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.seller-strategy-section {
  padding-top: 38px;
}

.seller-strategy-grid {
  grid-template-columns: minmax(0, .9fr) minmax(440px, .82fr);
}

.seller-photo-panel img {
  object-position: center;
}

.seller-resource-section {
  padding-top: 74px;
}

.seller-resource-image img {
  object-position: center 48%;
}

.seller-marketing-section {
  padding: 76px 0 82px;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seller-marketing-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, .7fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 30px;
}

.seller-marketing-head h2,
.seller-outcome-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.seller-marketing-head .copy {
  margin: 0;
  color: #34404a;
  font-size: 16px;
  line-height: 1.68;
}

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

.seller-marketing-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  min-height: 188px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(5, 11, 17, .065);
}

.seller-marketing-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #fff5f6;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
}

.seller-marketing-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.seller-marketing-card p {
  margin: 0;
  color: #34404a;
  font-size: 13px;
  line-height: 1.58;
}

.seller-results-section {
  padding-top: 68px;
  padding-bottom: 34px;
  background: #fff;
}

.seller-outcome-panel {
  display: grid;
  grid-template-columns: minmax(320px, .56fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 116px);
  align-items: start;
  padding: 70px 0 62px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seller-outcome-copy {
  max-width: 560px;
}

.seller-outcome-copy .copy {
  max-width: 500px;
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.68;
}

.seller-decision-list {
  display: grid;
  border-top: 1px solid #cfd5da;
}

.seller-decision-list article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid #cfd5da;
}

.seller-decision-list span,
.seller-decision-list h3,
.seller-decision-list p {
  display: block;
}

.seller-decision-list span {
  margin: 0;
  color: var(--red);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
}

.seller-decision-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.seller-decision-list p {
  max-width: 620px;
  margin: 12px 0 0;
  color: #4a5661;
  font-size: 15px;
  line-height: 1.62;
}

.seller-reviews-section {
  padding-top: 74px;
  padding-bottom: 84px;
  background: #fff;
}

.seller-reviews-shell {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(52px, 7vw, 112px);
  align-items: start;
}

.seller-reviews-head {
  max-width: 360px;
  margin-bottom: 0;
}

.seller-reviews-head h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.seller-reviews-head p {
  margin: 18px 0 0;
  color: #4b5560;
  font-size: 15px;
  line-height: 1.64;
}

.seller-review-rating {
  width: fit-content;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: end;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 2px solid var(--red);
}

.seller-review-rating strong {
  color: var(--ink);
  font-size: 42px;
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.055em;
  font-variant-numeric: tabular-nums;
}

.seller-review-rating span {
  max-width: 90px;
  color: #6a737d;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.seller-review-editorial {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .58fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: end;
  padding-top: 8px;
}

.seller-review-feature {
  position: relative;
  padding: 6px 0 34px;
  border-bottom: 1px solid #cfd5da;
}

.seller-review-feature::before {
  content: "“";
  position: absolute;
  top: -42px;
  left: -10px;
  z-index: 0;
  color: rgba(191, 35, 35, .09);
  font-size: 160px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
}

.seller-review-feature .stars {
  position: relative;
  z-index: 1;
}

.seller-review-feature blockquote {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 18px 0 24px;
  color: #1f2a34;
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.seller-review-feature cite,
.seller-review-stack cite {
  display: block;
  font-style: normal;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.seller-review-stack {
  border-top: 1px solid #cfd5da;
}

.seller-review-stack article {
  padding: 28px 0 30px;
  border-bottom: 1px solid #cfd5da;
}

.seller-review-stack blockquote {
  margin: 0 0 18px;
  color: #1f2a34;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.34;
  letter-spacing: -.026em;
}

.community-showcase {
  margin-top: 82px;
  text-align: center;
}

.community-showcase p {
  max-width: 720px;
  margin: -2px auto 0;
  color: #36404a;
  font-size: 16px;
  line-height: 1.65;
}

.community-tile-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  gap: 18px;
  margin-top: 34px;
}

.community-mini {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  border: 1px solid #edf0f3;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 12px 28px rgba(5, 11, 17, .06);
  transition: transform .22s cubic-bezier(.2,.7,.2,1), border-color .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s cubic-bezier(.2,.7,.2,1);
}

.community-mini:hover {
  border-color: rgba(194, 0, 18, .2);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(5, 11, 17, .1);
}

.community-mini img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
  object-position: center;
}

.community-mini img.focus-low {
  object-position: center 66%;
}

.community-card-body {
  display: grid;
  gap: 8px;
  padding: 18px 16px 17px;
}

.community-card-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.community-card-body p {
  margin: 0;
  color: #4d5964;
  font-size: 13px;
  line-height: 1.48;
}

.community-card-body em {
  margin-top: 3px;
  color: var(--red);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.community-button {
  min-height: 52px;
  margin-top: 34px;
  padding: 0 42px;
  border-width: 2px;
  font-size: 14px;
  background: #fff;
}

.facts span {
  display: inline;
}

.stats-wrap {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}

.home-stats-wrap {
  margin-top: -104px;
}

.stats {
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 4px;
  background: #06111a;
  color: #fff;
  box-shadow: var(--shadow);
}

.stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 25px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.stat:last-child {
  border-right: 0;
}

.stat-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.stat-icon img {
  width: 31px;
  height: 31px;
}

.stat strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -.025em;
  font-variant-numeric: tabular-nums;
}

.stat span {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.section {
  padding: 48px 0 54px;
}

.home-about-section {
  padding: 66px 0 38px;
}

.section-tight {
  padding: 34px 0 48px;
}

.split-head {
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: 74px;
  align-items: start;
  margin-bottom: 25px;
}

.split-head .copy {
  margin-top: 24px;
}

.team-grid,
.listing-grid,
.community-grid,
.testimonial-grid,
.value-grid,
.why-grid,
.role-grid,
.plan-grid {
  display: grid;
  gap: 18px;
}

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: center 30%;
  background: #eef0f2;
}

.team-card-body {
  padding: 16px 16px 15px;
}

.team-card h3 {
  margin: 0 0 3px;
  font-size: 18px;
}

.role {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-card p {
  margin: 12px 0 16px;
  color: #27313c;
  font-size: 12px;
  line-height: 1.58;
}

.mini-icons {
  display: flex;
  gap: 28px;
  color: #000;
  font-size: 13px;
  font-weight: 900;
}

.values {
  padding: 34px 0 38px;
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
  background: linear-gradient(180deg, #fbfbfc, #f5f6f8);
}

.center {
  text-align: center;
}

.value-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 18px;
}

.value-card {
  padding: 10px 24px 2px;
  text-align: center;
  border-right: 1px solid #dbe0e5;
}

.value-card:last-child {
  border-right: 0;
}

.value-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 11px;
}

.value-icon img {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-size: 16px;
}

.value-card p {
  margin-bottom: 0;
  color: #303a44;
  font-size: 12px;
  line-height: 1.55;
}

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

.testimonial {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  min-height: 124px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.quote {
  color: var(--red);
  font-size: 43px;
  font-weight: 900;
  line-height: .78;
}

.testimonial p {
  margin-bottom: 14px;
  color: #202a34;
  font-size: 13px;
  line-height: 1.55;
}

.stars {
  color: #ffb400;
  font-size: 16px;
  letter-spacing: 2px;
}

.author {
  margin-left: 10px;
  font-weight: 900;
}

.home-about,
.visual-copy {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 42px;
  align-items: center;
}

.home-about {
  grid-template-columns: minmax(0, 1.22fr) minmax(420px, .78fr);
  gap: 56px;
}

.photo-panel {
  overflow: hidden;
  border-radius: 5px;
  background: #eef0f2;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 262px;
  object-fit: cover;
}

.home-about-photo {
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(5, 11, 17, .08);
}

.home-about-photo img {
  min-height: clamp(430px, 34vw, 540px);
  object-position: center 34%;
}

.home-about-copy {
  max-width: 590px;
}

.home-about-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(24px, 2.35vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.home-about-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(46px, 4.6vw, 68px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.home-about-copy h2 span {
  color: var(--red);
}

.home-about-copy .copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: #202a34;
  font-size: clamp(19px, 1.35vw, 23px);
  font-weight: 800;
  line-height: 1.7;
}

.home-about-copy .feature-list {
  gap: 18px;
  margin: 0 0 31px;
  color: #121a22;
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 900;
  line-height: 1.28;
}

.home-about-copy .feature-list li {
  display: flex;
  align-items: center;
}

.home-about-copy .feature-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  margin: 0 16px 0 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(194, 0, 18, .2);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transform: none;
}

.home-about-copy .button {
  min-height: 58px;
  padding: 0 42px;
  border-radius: 5px;
  font-size: 14px;
}

.feature-list,
.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0 21px;
  list-style: none;
  color: #202a34;
  font-size: 14px;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-1px);
}

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

.action-card {
  position: relative;
  min-height: clamp(420px, 34vw, 540px);
  overflow: hidden;
  border-radius: 5px;
  color: #fff;
  display: grid;
  align-content: end;
  padding: 0;
  border: 0;
  background: #06111a;
  box-shadow: 0 18px 42px rgba(5, 11, 17, .14);
}

.action-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.action-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 11, 17, .08) 0%, rgba(5, 11, 17, .2) 48%, rgba(5, 11, 17, .62) 100%),
    linear-gradient(90deg, rgba(5, 11, 17, .38) 0%, rgba(5, 11, 17, .14) 52%, rgba(5, 11, 17, .03) 100%);
}

.action-card-body {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.action-card h3 {
  color: #fff;
}

.action-card h3 {
  margin-bottom: 9px;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.action-card p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.action-card .hero-actions {
  margin-top: 22px;
}

.action-card .button {
  min-height: 50px;
  padding: 0 30px;
  font-size: 13px;
}

.location-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  margin-top: 22px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.pin {
  color: var(--red);
  font-size: 25px;
  line-height: 1;
  margin-bottom: 6px;
}

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

.listing {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.listing-photo {
  position: relative;
  height: 148px;
}

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

.price {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 7px 12px;
  background: rgba(0,0,0,.78);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-size: 20px;
}

.listing-body {
  padding: 12px;
}

.listing-body strong,
.listing-body span {
  display: block;
  font-size: 12px;
}

.listing-body strong {
  font-size: 13px;
}

.facts {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
}

.community-grid {
  grid-template-columns: repeat(5, 1fr);
}

.community {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  border-radius: 5px;
  color: #fff;
  display: grid;
  align-content: end;
  padding: 13px;
}

.community img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,.78));
}

.community strong,
.community span {
  position: relative;
  z-index: 1;
}

.community strong {
  font-size: 14px;
}

.community span {
  font-size: 11px;
}

/* Communities page. */
.communities-page {
  background: #fff;
}

.communities-hero {
  padding: 78px 0 66px;
  background: #f7f8fa;
  border-bottom: 1px solid var(--line);
}

.communities-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.communities-hero-copy {
  max-width: 650px;
}

.communities-hero-copy h1 {
  margin: 10px 0 22px;
  color: var(--ink);
  font-size: clamp(48px, 5.6vw, 86px);
  font-weight: 900;
  line-height: .93;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.communities-hero-copy .lede {
  max-width: 620px;
  color: #26313c;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.62;
}

.communities-hero-media {
  position: relative;
  min-height: clamp(430px, 40vw, 570px);
  overflow: hidden;
  border-radius: 8px;
  background: #dfe4e8;
  box-shadow: 0 24px 58px rgba(5, 11, 17, .12);
}

.communities-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,11,17,0) 40%, rgba(5,11,17,.45) 100%),
    linear-gradient(90deg, rgba(5,11,17,.12), rgba(5,11,17,0) 42%);
}

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

.communities-hero-note {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 24px;
  max-width: 540px;
  color: #fff;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.035em;
}

.communities-service-strip {
  background: #06111a;
  color: #fff;
}

.communities-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}

.communities-service-list a {
  flex: 1 1 180px;
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  background: rgba(255,255,255,.035);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.communities-service-list a:hover {
  background: rgba(194,0,18,.92);
}

.community-guide-section {
  padding-top: 82px;
}

.communities-section-head {
  max-width: 820px;
  margin-bottom: 32px;
}

.communities-section-head h2 {
  margin: 8px 0 14px;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.056em;
  text-wrap: balance;
}

.communities-section-head p {
  max-width: 720px;
  color: #34404b;
  font-size: 18px;
  line-height: 1.62;
}

.communities-section-head-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .7fr);
  gap: 54px;
  align-items: end;
  max-width: none;
}

.community-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.community-guide-card {
  grid-column: span 4;
  display: grid;
  overflow: hidden;
  border: 1px solid #dfe4e8;
  border-radius: 8px;
  background: #fff;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.community-guide-card:hover {
  transform: translateY(-3px);
  border-color: rgba(194,0,18,.32);
  box-shadow: 0 20px 42px rgba(5, 11, 17, .1);
}

.community-guide-card-large {
  grid-column: span 8;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .82fr);
}

.community-guide-image {
  display: block;
  min-height: 260px;
  overflow: hidden;
  background: #dfe4e8;
}

.community-guide-card-large .community-guide-image {
  min-height: 100%;
}

.community-guide-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .35s ease;
}

.community-guide-card:hover .community-guide-image img {
  transform: scale(1.035);
}

.community-guide-body {
  display: grid;
  align-content: start;
  padding: 26px;
}

.community-guide-body > span,
.service-area-card > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.community-guide-body h3,
.service-area-card h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(25px, 2.2vw, 35px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.community-guide-body p,
.service-area-card p {
  margin: 0;
  color: #35414c;
  font-size: 15px;
  line-height: 1.62;
}

.community-guide-body dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.community-guide-body dl div {
  padding-top: 12px;
  border-top: 1px solid #edf0f2;
}

.community-guide-body dt {
  margin-bottom: 3px;
  color: #0b141c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.community-guide-body dd {
  margin: 0;
  color: #5a6570;
  font-size: 13px;
  line-height: 1.45;
}

.community-guide-link {
  align-self: end;
  margin-top: 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.community-guide-link::after {
  content: " ->";
}

.community-area-section {
  padding-top: 76px;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.service-area-card {
  padding: 30px 30px 28px;
  border: 1px solid #dfe4e8;
  border-radius: 8px;
  background: #fff;
}

.service-area-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #edf0f2;
  list-style: none;
}

.service-area-card li {
  color: #111a22;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.service-area-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-1px);
}

.community-search-cta {
  padding: 72px 0;
  background: #fff;
}

.community-search-panel {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, .52fr);
  gap: 42px;
  align-items: center;
  padding: clamp(32px, 4vw, 56px);
  border-radius: 8px;
  background: #06111a;
  color: #fff;
}

.community-search-panel h2 {
  margin: 8px 0 14px;
  color: #fff;
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.052em;
}

.community-search-panel p {
  max-width: 740px;
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.62;
}

.community-search-actions {
  display: grid;
  gap: 12px;
}

.community-search-actions .button {
  width: 100%;
}

/* Resources page. */
.resources-page {
  background: #fff;
}

.resources-hero {
  padding: 82px 0 76px;
  background: #f7f8fa;
  border-bottom: 1px solid var(--line);
}

.resources-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .46fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.resources-hero-copy {
  max-width: 820px;
}

.resources-hero-copy h1 {
  margin: 10px 0 22px;
  color: var(--ink);
  font-size: clamp(50px, 6vw, 92px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.resources-hero-copy .lede {
  max-width: 690px;
  color: #26313c;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.62;
}

.resources-start-card {
  padding: 32px;
  border-radius: 8px;
  background: #06111a;
  color: #fff;
  box-shadow: 0 24px 58px rgba(5, 11, 17, .12);
}

.resources-start-card > span,
.resource-feature-body > span,
.resource-library-card > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.resources-start-card h2 {
  margin: 9px 0 22px;
  color: #fff;
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.resources-start-card a {
  display: block;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.resources-start-card a::after {
  content: " ->";
  color: var(--red);
}

.resources-feature-section {
  padding: 78px 0 20px;
}

.resources-section-head {
  max-width: 840px;
  margin-bottom: 30px;
}

.resources-section-head h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.056em;
  text-wrap: balance;
}

.resources-section-head-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .72fr);
  gap: 54px;
  align-items: end;
  max-width: none;
}

.resources-section-head-split p {
  margin: 0 0 4px;
  color: #34404b;
  font-size: 18px;
  line-height: 1.62;
}

.resources-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.resource-feature-card {
  display: grid;
  overflow: hidden;
  border: 1px solid #dfe4e8;
  border-radius: 8px;
  background: #fff;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.resource-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(194,0,18,.32);
  box-shadow: 0 20px 42px rgba(5, 11, 17, .1);
}

.resource-feature-card-large {
  grid-column: span 1;
}

.resource-feature-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  background: #dfe4e8;
}

.resource-feature-card-large img {
  aspect-ratio: 1.75;
}

.resource-feature-body {
  display: grid;
  align-content: start;
  padding: 26px;
}

.resource-feature-body h3,
.resource-library-card h3,
.resources-question-copy h2 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(25px, 2.2vw, 35px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.resource-feature-body p,
.resource-library-card p,
.resources-question-list p {
  margin: 0;
  color: #35414c;
  font-size: 15px;
  line-height: 1.62;
}

.resource-library-section {
  padding-top: 70px;
}

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

.resource-library-card {
  min-height: 245px;
  display: grid;
  align-content: start;
  padding: 26px;
  border: 1px solid #dfe4e8;
  border-radius: 8px;
  background: #fff;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.resource-library-card:hover {
  transform: translateY(-3px);
  border-color: rgba(194,0,18,.32);
  box-shadow: 0 20px 42px rgba(5, 11, 17, .1);
}

.resource-library-card h3 {
  font-size: clamp(22px, 1.8vw, 29px);
}

.resource-library-card p {
  font-size: 14px;
}

.resource-library-card::after {
  content: "Read more ->";
  align-self: end;
  margin-top: 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.resources-question-section {
  padding: 82px 0;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resources-question-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.resources-question-copy {
  position: sticky;
  top: 24px;
}

.resources-question-copy h2 {
  font-size: clamp(38px, 4.1vw, 62px);
  line-height: .96;
  text-wrap: balance;
}

.resources-question-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #dfe4e8;
}

.resources-question-list article {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid #dfe4e8;
}

.resources-question-list article > span {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .055em;
}

.resources-question-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.resources-cta {
  background: #fff;
}

/* Contact page. */
.contact-page {
  background: #fff;
}

.contact-hero {
  padding: 84px 0 78px;
  background: #f7f8fa;
  border-bottom: 1px solid var(--line);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .54fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: center;
}

.contact-hero-copy {
  max-width: 790px;
}

.contact-hero-copy h1 {
  margin: 10px 0 22px;
  color: var(--ink);
  font-size: clamp(52px, 6.3vw, 96px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.contact-hero-copy .lede {
  max-width: 680px;
  color: #26313c;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.62;
}

.contact-photo-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  background: #06111a;
  box-shadow: 0 24px 58px rgba(5, 11, 17, .14);
}

.contact-photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,17,26,0) 30%, rgba(6,17,26,.82) 100%);
  pointer-events: none;
}

.contact-photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

.contact-direct-card {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px 24px;
  border-left: 4px solid var(--red);
  background: rgba(6, 17, 26, .91);
  color: #fff;
}

.contact-direct-card span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.contact-direct-card a {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.contact-direct-card p {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
  font-size: 14px;
  line-height: 1.55;
}

.contact-route-section {
  padding: 68px 0 64px;
  background: #fff;
}

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dfe4e8;
  border-bottom: 1px solid #dfe4e8;
}

.contact-route-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 30px 30px 28px;
  border-right: 1px solid #dfe4e8;
  transition: background .22s ease, transform .22s ease;
}

.contact-route-card:last-child {
  border-right: 0;
}

.contact-route-card:hover {
  background: #f7f8fa;
  transform: translateY(-2px);
}

.contact-route-card > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.contact-route-card h2 {
  margin: 12px 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.contact-route-card p {
  margin: 0;
  color: #3a4650;
  font-size: 14px;
  line-height: 1.62;
}

.contact-route-card::after {
  content: "Learn more ->";
  align-self: end;
  margin-top: auto;
  padding-top: 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.contact-form-section {
  padding: 82px 0 88px;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, .92fr);
  gap: clamp(42px, 6vw, 94px);
  align-items: start;
}

.contact-form-copy {
  position: sticky;
  top: 112px;
}

.contact-form-copy h2 {
  margin: 8px 0 18px;
  color: var(--ink);
  font-size: clamp(40px, 4.7vw, 72px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.056em;
  text-wrap: balance;
}

.contact-form-copy > p {
  max-width: 560px;
  margin: 0;
  color: #34404b;
  font-size: 18px;
  line-height: 1.62;
}

.contact-next-list {
  margin-top: 38px;
  border-top: 1px solid #d7dde2;
}

.contact-next-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #d7dde2;
}

.contact-next-list span {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .055em;
}

.contact-next-list h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.contact-next-list p {
  margin: 0;
  color: #4b5560;
  font-size: 14px;
  line-height: 1.58;
}

.contact-form-panel {
  padding: 34px;
  border: 1px solid #dfe4e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(5, 11, 17, .09);
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field span {
  color: #1c2731;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #ccd3d9;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: 0;
  padding: 12px 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-field textarea {
  min-height: 142px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(194, 0, 18, .65);
  box-shadow: 0 0 0 4px rgba(194, 0, 18, .08);
}

.contact-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
}

.contact-form-note {
  margin: 16px 0 0;
  color: #58636e;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.contact-form-note a {
  color: var(--red);
  font-weight: 900;
}

.contact-service-section {
  padding: 70px 0;
  background: #fff;
}

.contact-service-panel {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(460px, .78fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
  padding-top: 38px;
  border-top: 2px solid var(--red);
}

.contact-service-panel h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.contact-service-panel p {
  margin: 0 0 4px;
  color: #34404b;
  font-size: 18px;
  line-height: 1.62;
}

/* Agent landing pages. */
.agent-page {
  background: #fff;
}

.agent-page .amy-agent-hero {
  min-height: 520px;
  background: #fff;
}

.agent-page .amy-agent-hero::before {
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.98) 26%, rgba(255,255,255,.74) 42%, rgba(255,255,255,.26) 58%, rgba(255,255,255,0) 77%),
    url("/assets/images/amy-louisville-skyline-joshua-michaels.webp") center right / cover no-repeat;
}

.agent-page .amy-hero-stage {
  min-height: 520px;
  grid-template-columns: minmax(390px, .42fr) minmax(0, 1fr);
}

.agent-page .amy-hero-copy {
  padding: 64px 0 132px;
}

.agent-page .amy-hero-copy h1 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(46px, 4.8vw, 68px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.agent-page .amy-hero-copy .lede {
  max-width: 420px;
  color: #111a22;
  font-size: 18px;
  line-height: 1.64;
}

.agent-page .amy-agent-hero .hero-actions {
  gap: 18px;
  margin-top: 28px;
}

.agent-page .amy-agent-hero .button {
  min-height: 56px;
  padding: 0 32px;
  border-radius: 5px;
  font-size: 13px;
}

.agent-page .amy-agent-hero .button:not(.primary) {
  border-color: rgba(194, 0, 18, .48);
  background: rgba(255,255,255,.88);
}

.agent-page .amy-hero-cutout {
  right: clamp(54px, 11.4vw, 176px);
  bottom: -268px;
  height: clamp(690px, 55vw, 820px);
  filter: drop-shadow(0 20px 30px rgba(5, 11, 17, .28));
}

.agent-stats-wrap {
  margin-top: -52px;
}

.agent-stats-wrap .stats {
  min-height: 116px;
  border-radius: 6px;
  box-shadow: 0 24px 54px rgba(5, 11, 17, .18);
}

.agent-stats-wrap .stat {
  padding: 24px 32px;
}

.agent-stats-wrap .stat strong {
  font-size: 30px;
}

.agent-bio-section {
  padding: 42px 0 32px;
  background: #fff;
}

.agent-bio-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, .94fr) minmax(300px, .68fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid #dfe4e8;
}

.agent-bio-photo {
  overflow: hidden;
  border-radius: 6px;
  background: #eef0f2;
}

.agent-bio-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.03;
  object-fit: cover;
  object-position: center;
}

.agent-bio-copy h2 {
  max-width: 600px;
  margin: 8px 0 15px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.048em;
  text-wrap: balance;
}

.agent-bio-copy .copy {
  max-width: 580px;
  color: #26313c;
  font-size: 15px;
  line-height: 1.62;
}

.agent-bio-copy .button {
  min-height: 48px;
  margin-top: 4px;
  padding: 0 28px;
}

.agent-awards {
  display: grid;
  gap: 0;
  padding-left: 36px;
  border-left: 1px solid #dfe4e8;
}

.agent-award {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #dfe4e8;
}

.agent-award:first-child {
  padding-top: 0;
}

.agent-award:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.agent-award-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
}

.agent-award strong,
.agent-award span {
  display: block;
  text-transform: uppercase;
}

.agent-award strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.08;
}

.agent-award span {
  margin-top: 4px;
  color: #303b45;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.agent-section {
  padding: 28px 0 34px;
}

.agent-row-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.agent-row-title h2 {
  margin: 0;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.agent-row-title .view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.agent-row-title .view-link::after {
  content: "->";
}

.agent-listing-grid {
  gap: 22px;
}

.agent-listing-grid .listing {
  border-color: #dfe4e8;
  border-radius: 6px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.agent-listing-grid .listing:hover {
  transform: translateY(-3px);
  border-color: rgba(194,0,18,.28);
  box-shadow: 0 18px 38px rgba(5, 11, 17, .1);
}

.agent-listing-grid .listing-photo {
  height: 178px;
}

.agent-listing-grid .listing-body {
  padding: 14px 14px 15px;
}

.agent-listing-grid .listing-body strong {
  font-size: 14px;
}

.agent-community-grid {
  gap: 20px;
}

.agent-community-grid .community {
  min-height: 150px;
  border-radius: 6px;
  padding: 16px;
}

.agent-community-grid .community::after {
  background: linear-gradient(180deg, rgba(5,11,17,0) 18%, rgba(5,11,17,.82) 100%);
}

.agent-community-grid .community strong {
  font-size: 16px;
}

.agent-reviews-section {
  padding: 30px 0 50px;
}

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

.agent-testimonial {
  min-height: 154px;
  border-color: #dfe4e8;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(5, 11, 17, .06);
}

.agent-testimonial p {
  font-size: 14px;
}

.agent-review-meta {
  display: grid;
  grid-template-columns: minmax(120px, .45fr) minmax(90px, .4fr) auto;
  gap: 10px;
  align-items: end;
  color: #111a22;
  font-size: 13px;
}

.agent-review-meta strong,
.agent-review-meta span {
  display: block;
}

.agent-review-meta strong {
  font-size: 14px;
  font-weight: 900;
}

.agent-review-meta > span:not(.stars) {
  color: #5a6570;
}

.agent-cta .cta-title h2 {
  text-transform: none;
}

.bio-grid {
  display: grid;
  grid-template-columns: 288px 1fr 300px;
  gap: 36px;
  align-items: center;
}

.bio-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 5px;
}

.awards {
  display: grid;
  gap: 16px;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.award {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.award:last-child {
  border-bottom: 0;
}

.award-mark {
  color: var(--red);
  font-size: 32px;
  text-align: center;
  font-weight: 900;
}

.award strong,
.award span {
  display: block;
  text-transform: uppercase;
}

.award strong {
  font-size: 15px;
}

.award span {
  font-size: 11px;
}

.process {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.process-step {
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

.process-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  border: 1px solid #efb9bf;
  border-radius: 50%;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

.why-grid {
  grid-template-columns: repeat(5, 1fr);
}

.why-card,
.role-card {
  min-height: 144px;
  padding: 22px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
}

.why-card img,
.role-card img {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
}

.why-card h3,
.role-card h3 {
  font-size: 14px;
}

.why-card p,
.role-card p {
  margin-bottom: 0;
  color: #26313a;
  font-size: 12px;
  line-height: 1.5;
}

.plan-grid {
  grid-template-columns: repeat(6, 1fr);
}

.plan-card {
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.plan-card img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
}

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

.quote-panel {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  padding: 30px;
  border-radius: 4px;
  background: #06111a;
  color: #fff;
}

.quote-panel img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
}

.quote-panel p {
  color: #fff;
  font-size: 17px;
}

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

.row-title h2 {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.view-link {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta {
  background: linear-gradient(90deg, #b8000e, #d20012, #9c000c);
  color: #fff;
}

.cta .wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cta-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-icon {
  font-size: 38px;
  line-height: 1;
}

.cta h2,
.cta p {
  margin: 0;
  color: #fff;
}

.cta h2 {
  font-size: 25px;
}

.footer {
  padding: 32px 0 34px;
  background: #06111a;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr 1fr;
  gap: 38px;
}

.footer-col {
  padding-right: 34px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.footer-col:last-child {
  padding-right: 0;
  border-right: 0;
}

.footer-logo {
  width: 220px;
  margin-bottom: 16px;
}

.footer-list {
  display: grid;
  gap: 9px;
  color: #fff;
  font-size: 13px;
}

.footer h4 {
  margin: 0 0 16px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-links {
  columns: 2;
  column-gap: 28px;
  font-size: 13px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 22px;
  font-size: 22px;
}

.footer-copy {
  margin: 0 0 16px;
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
}

.footer-bottom {
  margin-top: 24px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

@media (max-width: 980px) {
  :root {
    --wrap: min(100% - 32px, 720px);
  }

  .topbar .wrap {
    height: auto;
    min-height: 36px;
    flex-wrap: wrap;
    padding: 8px 0;
  }

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

  .logo {
    width: 190px;
  }

  .hero-stage,
  .home-about,
  .buyers-hero-grid,
  .buyer-section-head,
  .buyer-strategy-grid,
  .buyer-resource-hero,
  .buyer-guide-grid,
  .visual-copy,
  .bio-grid,
  .split-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .amy-agent-hero {
    min-height: 620px;
  }

  .amy-hero-stage {
    min-height: 620px;
    grid-template-columns: 1fr;
  }

  .amy-hero-copy {
    padding: 38px 0 300px;
  }

  .amy-hero-cutout {
    right: 4%;
    bottom: -250px;
    height: 680px;
  }

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

  .page-hero::before {
    width: 100%;
    opacity: .5;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.28) 20%, #000 48%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.28) 20%, #000 48%, #000 100%);
  }

  .page-hero::after {
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.98) 48%, rgba(255,255,255,.72) 68%, rgba(255,255,255,.12) 100%);
  }

  .page-hero-copy {
    max-width: 560px;
    padding: 42px 0 58px;
  }

  .page-hero h1 {
    font-size: clamp(44px, 8vw, 62px);
  }

  .page-hero .button {
    min-height: 50px;
    padding: 0 26px;
  }

  .hero-copy {
    padding: 38px 0 0;
  }

  .home-hero .hero-stage {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .home-hero .hero-copy {
    display: block;
    padding: 38px 0 0;
  }

  .home-hero h1 {
    font-size: clamp(46px, 8vw, 64px);
    line-height: .98;
    letter-spacing: -.055em;
  }

  .home-hero .lede {
    max-width: none;
  }

  .home-hero .hero-media {
    margin-left: 0;
    min-height: 360px;
  }

  .home-hero .hero-media img {
    min-height: 360px;
  }

  .home-hero-actions {
    position: static;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
  }

  .home-stats-wrap {
    margin-top: 24px;
  }

  .home-about-section {
    padding: 46px 0 34px;
  }

  .home-about {
    gap: 30px;
  }

  .home-about-photo img {
    min-height: 360px;
  }

  .home-about-copy {
    max-width: none;
  }

  .home-about-eyebrow {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .home-about-copy h2 {
    margin-bottom: 20px;
    font-size: 44px;
  }

  .home-about-copy .copy {
    font-size: 18px;
  }

  .home-hero-actions .button {
    min-height: 46px;
    padding: 0 22px;
    font-size: 12px;
  }

  .home-hero-actions .button.primary,
  .home-hero-actions .button:not(.primary) {
    min-width: auto;
  }

  .buyers-hero-grid {
    min-height: auto;
    padding: 38px 0 40px;
  }

  .buyers-hero-copy h1 {
    font-size: clamp(44px, 8vw, 62px);
  }

  .buyers-hero .button {
    min-height: 50px;
    padding: 0 26px;
  }

  .buyers-hero-media,
  .buyers-hero-media img {
    min-height: 380px;
  }

  .buyer-proof-strip {
    margin-top: 0;
  }

  .buyer-proof-grid,
  .buyer-process-grid,
  .buyer-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .buyer-proof-grid div:nth-child(2) {
    border-right: 0;
  }

  .buyer-proof-grid div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .buyer-section-head {
    gap: 16px;
  }

  .buyer-system-board {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .buyer-system-card {
    position: relative;
    top: auto;
  }

  .buyer-process-grid {
    gap: 18px;
  }

  .buyer-process-grid::before,
  .buyer-process-grid article::before,
  .buyer-process-grid article::after {
    display: none;
  }

  .buyer-process-grid article,
  .buyer-process-grid article:nth-child(even) {
    margin-top: 0;
  }

  .buyer-strategy-grid,
  .seller-strategy-grid,
  .seller-marketing-head,
  .seller-outcome-panel,
  .seller-outcome-copy,
  .seller-reviews-shell,
  .seller-review-editorial,
  .buyer-guide-grid {
    gap: 30px;
  }

  .seller-marketing-head,
  .seller-outcome-panel,
  .seller-outcome-copy,
  .seller-reviews-shell,
  .seller-review-editorial {
    grid-template-columns: 1fr;
  }

  .seller-outcome-panel {
    padding: 54px 0;
  }

  .seller-outcome-copy .copy {
    grid-column: 1;
    grid-row: auto;
  }

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

  .communities-hero-grid,
  .communities-section-head-split,
  .community-search-panel,
  .resources-hero-grid,
  .resources-section-head-split,
  .resources-question-grid {
    grid-template-columns: 1fr;
  }

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

  .resources-start-card,
  .resources-question-copy {
    position: static;
  }

  .resources-feature-grid {
    grid-template-columns: 1fr;
  }

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

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

  .community-guide-card,
  .community-guide-card-large {
    grid-column: auto;
  }

  .community-guide-card-large {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .community-guide-card-large .community-guide-image {
    min-height: 330px;
  }

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

  .buyer-resource-hero {
    min-height: auto;
  }

  .first-time-image,
  .first-time-image img {
    min-height: 340px;
  }

  .first-time-image::before {
    inset: 0;
    width: auto;
    background: linear-gradient(180deg, rgba(6,17,26,.26) 0%, rgba(6,17,26,0) 46%);
  }

  .community-tile-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .buyer-photo-panel img {
    min-height: 340px;
  }

  .hero-media,
  .hero-media img {
    min-height: 330px;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .team-grid,
  .listing-grid,
  .community-grid,
  .testimonial-grid,
  .value-grid,
  .why-grid,
  .role-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process,
  .plan-grid,
  .location-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .awards {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --wrap: min(100% - 28px, 520px);
  }

  .header {
    height: 72px;
  }

  .logo {
    width: 178px;
  }

  h1 {
    font-size: 38px;
  }

  .amy-agent-hero {
    min-height: 580px;
  }

  .amy-agent-hero::before {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.94) 45%, rgba(255,255,255,.38) 76%, rgba(255,255,255,0) 100%),
      url("/assets/images/amy-louisville-skyline-joshua-michaels.webp") center right / cover no-repeat;
  }

  .amy-hero-stage {
    min-height: 580px;
  }

  .amy-hero-copy {
    padding-bottom: 270px;
  }

  .amy-hero-copy h1 {
    font-size: 42px;
    letter-spacing: -.05em;
  }

  .amy-hero-cutout {
    right: -18px;
    bottom: -220px;
    height: 580px;
  }

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

  .page-hero::before {
    background-position: center right;
    opacity: .38;
  }

  .page-hero::after {
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.97) 56%, rgba(255,255,255,.72) 82%, rgba(255,255,255,.2) 100%);
  }

  .page-hero-copy {
    padding: 38px 0 50px;
  }

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

  .page-hero .lede {
    font-size: 17px;
  }

  .page-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero .button {
    width: 100%;
  }

  .home-hero h1 {
    font-size: 46px;
  }

  .buyers-hero-copy h1 {
    font-size: 42px;
  }

  .buyers-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .buyers-hero .button {
    width: 100%;
  }

  .buyers-hero-media,
  .buyers-hero-media img {
    min-height: 320px;
  }

  .buyers-hero-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .buyer-proof-grid,
  .buyer-process-grid,
  .buyer-feature-grid,
  .seller-marketing-grid,
  .community-feature-grid,
  .service-area-grid,
  .community-tile-row {
    grid-template-columns: 1fr;
  }

  .communities-hero {
    padding: 48px 0 42px;
  }

  .communities-hero-copy h1 {
    font-size: 42px;
  }

  .communities-hero-copy .lede,
  .communities-section-head p,
  .community-search-panel p {
    font-size: 16px;
  }

  .communities-hero-media {
    min-height: 300px;
  }

  .communities-hero-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 20px;
  }

  .communities-service-list a {
    flex-basis: 50%;
    min-height: 58px;
    font-size: 11px;
  }

  .community-guide-section,
  .community-area-section {
    padding-top: 48px;
  }

  .communities-section-head h2,
  .community-search-panel h2 {
    font-size: 34px;
  }

  .community-guide-card-large {
    grid-column: auto;
  }

  .community-guide-image,
  .community-guide-card-large .community-guide-image {
    min-height: 230px;
  }

  .community-guide-body,
  .service-area-card {
    padding: 22px;
  }

  .service-area-card ul {
    grid-template-columns: 1fr;
  }

  .community-search-cta {
    padding: 48px 0;
  }

  .community-search-panel {
    padding: 28px 22px;
  }

  .resources-hero {
    padding: 48px 0 44px;
  }

  .resources-hero-copy h1 {
    font-size: 42px;
  }

  .resources-hero-copy .lede,
  .resources-section-head-split p {
    font-size: 16px;
  }

  .resources-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .resources-hero .button {
    width: 100%;
  }

  .resources-start-card,
  .resource-feature-body,
  .resource-library-card {
    padding: 22px;
  }

  .resources-feature-section {
    padding-top: 48px;
  }

  .resources-section-head h2,
  .resources-question-copy h2 {
    font-size: 34px;
  }

  .resource-library-section {
    padding-top: 46px;
  }

  .resource-library-grid {
    grid-template-columns: 1fr;
  }

  .resource-library-card {
    min-height: auto;
  }

  .resources-question-section {
    padding: 48px 0;
  }

  .resources-question-list article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .buyer-proof-grid div,
  .buyer-proof-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .buyer-proof-grid div:last-child {
    border-bottom: 0;
  }

  .buyer-process-grid article {
    min-height: auto;
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 22px;
  }

  .buyer-process-grid span {
    width: 46px;
    height: 46px;
    margin-bottom: 0;
    font-size: 12px;
  }

  .seller-marketing-section {
    padding: 48px 0 54px;
  }

  .seller-marketing-head h2,
  .seller-outcome-copy h2 {
    font-size: 30px;
  }

  .seller-marketing-card {
    min-height: auto;
    padding: 22px;
  }

  .seller-reviews-section {
    padding-top: 50px;
    padding-bottom: 58px;
  }

  .seller-outcome-panel {
    padding: 42px 0;
  }

  .seller-decision-list article {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0;
  }

  .seller-reviews-head h2,
  .seller-review-feature blockquote {
    font-size: 30px;
  }

  .seller-review-feature {
    padding-bottom: 28px;
  }

  .seller-review-feature::before {
    top: -30px;
    left: -6px;
    font-size: 112px;
  }

  .seller-review-stack article {
    padding: 24px 0;
  }

  .seller-review-stack blockquote {
    font-size: 19px;
  }

  .buyer-check-panel {
    padding: 26px 22px;
  }

  .buyer-resource-section {
    padding: 44px 0 50px;
  }

  .buyer-resource-hero {
    border-radius: 6px;
  }

  .first-time-copy {
    padding: 28px 22px 30px;
  }

  .first-time-copy h2,
  .community-showcase h2 {
    font-size: 30px;
  }

  .first-time-copy p {
    font-size: 18px;
  }

  .resource-check-list li {
    align-items: flex-start;
    font-size: 16px;
  }

  .resource-check-list li::before {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    margin-right: 12px;
    font-size: 13px;
  }

  .resource-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .resource-actions .button {
    width: 100%;
  }

  .first-time-image,
  .first-time-image img {
    min-height: 250px;
  }

  .first-time-image::before {
    inset: 0;
    width: auto;
    background: linear-gradient(180deg, rgba(6,17,26,.24) 0%, rgba(6,17,26,0) 46%);
  }

  .community-showcase {
    margin-top: 36px;
  }

  .community-tile-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .community-mini img {
    aspect-ratio: 1.78;
  }

  .community-card-body {
    padding: 16px 15px 17px;
  }

  .community-button {
    width: 100%;
    padding: 0 20px;
  }

  .home-about-copy h2 {
    font-size: 40px;
  }

  .home-about-copy .feature-list {
    gap: 14px;
    font-size: 16px;
  }

  .home-about-copy .feature-list li::before {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    margin-right: 12px;
    font-size: 13px;
  }

  .stats,
  .team-grid,
  .listing-grid,
  .community-grid,
  .testimonial-grid,
  .value-grid,
  .why-grid,
  .role-grid,
  .footer-grid,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .value-card {
    border-right: 0;
    border-bottom: 1px solid #dbe0e5;
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .footer-col {
    padding-right: 0;
    border-right: 0;
  }

  .cta .wrap,
  .row-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .process,
  .plan-grid,
  .location-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* About page V2. */
.about-proposed-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #06111a;
  color: #fff;
}

.about-proposed-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,17,26,.92) 0%, rgba(6,17,26,.82) 32%, rgba(6,17,26,.32) 58%, rgba(6,17,26,.02) 100%),
    url("/assets/images/team-pruitt-three-agents-hero.webp") 70% center / cover no-repeat;
}

.about-proposed-hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 680px;
  align-items: center;
}

.about-proposed-hero-copy {
  max-width: 640px;
  padding: 82px 0 88px;
}

.about-proposed-hero-copy h1 {
  margin: 8px 0 20px;
  color: #fff;
  font-size: clamp(54px, 6.2vw, 92px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.about-proposed-hero-copy .lede {
  max-width: 560px;
  color: rgba(255,255,255,.84);
  font-size: 19px;
  line-height: 1.62;
}

.about-proposed-hero .breadcrumb {
  color: rgba(255,255,255,.62);
}

.about-proposed-hero .button.secondary {
  border-color: rgba(255,255,255,.36);
  color: #fff;
}

.about-proposed-proof {
  background: #06111a;
  color: #fff;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.about-proof-grid div {
  padding: 28px 34px 30px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.about-proof-grid div:last-child {
  border-right: 0;
}

.about-proof-grid strong {
  display: block;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.055em;
  font-variant-numeric: tabular-nums;
}

.about-proof-grid span {
  display: block;
  max-width: 210px;
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-story-section,
.about-people-section,
.about-method-section,
.about-review-section {
  background: #fff;
}

.about-story-section {
  padding: 82px 0 74px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .72fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.about-story-grid h2,
.about-section-head h2,
.about-method-intro h2,
.about-review-grid h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.about-story-copy {
  border-top: 1px solid var(--line);
}

.about-story-copy p {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: #33404a;
  font-size: 18px;
  line-height: 1.68;
}

.about-people-section {
  padding: 72px 0 82px;
  border-top: 1px solid var(--line);
}

.about-team-board {
  display: grid;
  grid-template-columns: minmax(280px, .44fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 108px);
  align-items: start;
}

.about-team-intro {
  position: sticky;
  top: 106px;
  padding-top: 6px;
}

.about-team-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 66px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.about-team-intro p {
  max-width: 430px;
  margin: 22px 0 0;
  color: #34404a;
  font-size: 17px;
  line-height: 1.68;
}

.about-profile-list {
  border-top: 1px solid #cfd5da;
}

.about-profile-row {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #cfd5da;
}

.about-profile-row img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  background: #e8ecef;
}

.about-profile-content span {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.about-profile-content h3 {
  margin: 7px 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.06em;
}

.about-profile-content p {
  max-width: 640px;
  margin: 0;
  color: #34404a;
  font-size: 16px;
  line-height: 1.62;
}

.about-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.about-profile-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #d9dee3;
  color: #26313b;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.about-roster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

.about-profile {
  position: relative;
}

.about-profile img {
  width: 100%;
  display: block;
  object-fit: cover;
  background: #e8ecef;
}

.about-profile-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(220px, .56fr) minmax(0, .44fr);
  min-height: 420px;
  border-bottom: 1px solid var(--line);
}

.about-profile-large img {
  height: 100%;
  min-height: 420px;
}

.about-profile-large div {
  display: grid;
  align-content: end;
  padding: 28px 0 28px 28px;
}

.about-profile-compact {
  border-top: 1px solid var(--line);
}

.about-profile-compact img {
  aspect-ratio: 1 / 1.15;
}

.about-profile-compact div {
  padding: 18px 0 0;
}

.about-profile span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.about-profile h3 {
  margin: 6px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.052em;
}

.about-profile p {
  margin: 0;
  color: #34404a;
  font-size: 15px;
  line-height: 1.62;
}

.about-team-card-section {
  max-width: 1480px;
}

.about-team-card-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, .86fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: end;
  margin-bottom: 34px;
}

.about-team-card-head h2,
.about-values-head h2,
.about-testimonial-head h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.about-team-card-head p {
  max-width: 720px;
  margin: 0 0 8px;
  color: #26313b;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.62;
}

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

.about-agent-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(5, 11, 17, .055);
}

.about-agent-card img {
  width: 100%;
  aspect-ratio: 1 / .96;
  display: block;
  object-fit: cover;
  object-position: center 22%;
  background: #eef0f2;
}

.about-agent-photo-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.about-agent-photo-link:focus-visible,
.about-agent-card-body h3 a:focus-visible {
  outline: 3px solid rgba(194, 0, 18, .35);
  outline-offset: 4px;
}

.about-agent-card-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 292px;
  padding: 24px 26px 22px;
}

.about-agent-card-body h3 {
  margin: 0 0 6px;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.046em;
}

.about-agent-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.about-agent-card-body h3 a:hover {
  color: var(--red);
}

.about-agent-card-body > span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.about-agent-card-body p {
  margin: 16px 0 22px;
  color: #2f3943;
  font-size: 15px;
  line-height: 1.62;
}

.about-agent-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #edf0f3;
}

.about-agent-links a {
  color: #121a22;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.about-agent-links a:hover {
  color: var(--red);
}

.about-values-section {
  padding: 58px 0 64px;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-values-head,
.about-testimonial-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #dbe0e5;
  border-bottom: 1px solid #dbe0e5;
}

.about-values-grid article {
  min-height: 220px;
  padding: 36px 28px 30px;
  border-right: 1px solid #dbe0e5;
  text-align: center;
}

.about-values-grid article:last-child {
  border-right: 0;
}

.about-values-grid img {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.about-values-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.about-values-grid p {
  margin: 0 auto;
  max-width: 220px;
  color: #414c56;
  font-size: 14px;
  line-height: 1.58;
}

.about-testimonial-section {
  padding: 72px 0 84px;
  background: #fff;
}

.about-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-testimonial-grid article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  min-height: 220px;
  padding: 32px 34px 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(5, 11, 17, .045);
}

.about-testimonial-grid article > span {
  color: var(--red);
  font-size: 64px;
  font-weight: 900;
  line-height: .78;
}

.about-testimonial-grid p {
  margin: 0;
  color: #1f2a34;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.52;
}

.about-testimonial-grid div {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
}

.about-testimonial-grid strong {
  color: #ffb400;
  font-size: 16px;
  letter-spacing: 3px;
  white-space: nowrap;
}

.about-testimonial-grid cite {
  color: #1f2a34;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.about-method-section {
  padding: 74px 0 82px;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-method-grid {
  display: grid;
  grid-template-columns: minmax(280px, .52fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 128px);
}

.about-method-list {
  border-top: 1px solid #cfd5da;
}

.about-method-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 34px;
  padding: 28px 0;
  border-bottom: 1px solid #cfd5da;
}

.about-method-list span {
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.05em;
}

.about-method-list h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.about-method-list p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #4b5560;
  font-size: 15px;
  line-height: 1.62;
}

.about-review-section {
  padding: 82px 0 88px;
}

.about-review-grid {
  display: grid;
  grid-template-columns: minmax(300px, .64fr) minmax(0, .9fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: end;
}

.about-review-grid blockquote {
  position: relative;
  margin: 0;
  padding-top: 34px;
  border-top: 2px solid var(--red);
}

.about-review-grid blockquote::before {
  content: "“";
  position: absolute;
  top: -52px;
  left: -10px;
  color: rgba(191,35,35,.09);
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
}

.about-review-grid blockquote p {
  position: relative;
  margin: 0 0 22px;
  color: #101820;
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.about-review-grid cite {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .about-proposed-hero::before {
    background:
      linear-gradient(90deg, rgba(6,17,26,.94) 0%, rgba(6,17,26,.78) 52%, rgba(6,17,26,.24) 100%),
      url("/assets/images/team-pruitt-three-agents-hero.webp") 80% center / cover no-repeat;
  }

  .about-story-grid,
  .about-method-grid,
  .about-review-grid,
  .about-team-board,
  .about-team-card-head {
    grid-template-columns: 1fr;
  }

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

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

  .about-values-grid article {
    border-bottom: 1px solid #dbe0e5;
  }

  .about-values-grid article:nth-child(even) {
    border-right: 0;
  }

  .about-values-grid article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .about-team-intro {
    position: static;
  }

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

  .about-profile-large {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .about-proposed-hero,
  .about-proposed-hero-stage {
    min-height: 620px;
  }

  .about-proposed-hero-copy {
    padding: 54px 0 64px;
  }

  .about-proposed-hero-copy h1 {
    font-size: 46px;
  }

  .about-proof-grid,
  .about-roster,
  .about-profile-large,
  .about-profile-row,
  .about-team-card-grid,
  .about-values-grid,
  .about-testimonial-grid,
  .about-method-list article {
    grid-template-columns: 1fr;
  }

  .about-proof-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .about-proof-grid div:last-child {
    border-bottom: 0;
  }

  .about-profile-large {
    grid-column: auto;
    min-height: auto;
  }

  .about-profile-large img {
    min-height: auto;
    aspect-ratio: 1 / 1.08;
  }

  .about-profile-large div {
    padding: 18px 0 0;
  }

  .about-profile-compact {
    border-top: 0;
  }

  .about-profile-row {
    gap: 18px;
    padding: 26px 0;
  }

  .about-profile-row img {
    aspect-ratio: 1 / .92;
  }

  .about-team-card-head {
    margin-bottom: 24px;
  }

  .about-team-card-head p {
    margin-bottom: 0;
    font-size: 16px;
  }

  .about-agent-card-body {
    min-height: auto;
    padding: 22px 22px 20px;
  }

  .about-agent-card img {
    aspect-ratio: 1 / .9;
  }

  .about-values-grid article,
  .about-values-grid article:nth-child(even),
  .about-values-grid article:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid #dbe0e5;
  }

  .about-values-grid article:last-child {
    border-bottom: 0;
  }

  .about-testimonial-grid article {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 26px 22px 24px;
  }

  .about-testimonial-grid article > span {
    font-size: 52px;
  }

  .about-testimonial-grid div {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-story-section,
  .about-people-section,
  .about-method-section,
  .about-review-section,
  .about-values-section,
  .about-testimonial-section {
    padding: 52px 0 58px;
  }
}

@media (max-width: 980px) {
  .contact-hero-grid,
  .contact-form-grid,
  .contact-service-panel {
    grid-template-columns: 1fr;
  }

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

  .contact-photo-panel,
  .contact-photo-panel img {
    min-height: 430px;
  }

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

  .contact-route-card:nth-child(2) {
    border-right: 0;
  }

  .contact-route-card:nth-child(-n+2) {
    border-bottom: 1px solid #dfe4e8;
  }

  .contact-form-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .contact-hero {
    padding: 48px 0 44px;
  }

  .contact-hero-copy h1 {
    font-size: 42px;
  }

  .contact-hero-copy .lede,
  .contact-form-copy > p,
  .contact-service-panel p {
    font-size: 16px;
  }

  .contact-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .contact-photo-panel,
  .contact-photo-panel img {
    min-height: 360px;
  }

  .contact-direct-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .contact-direct-card a {
    font-size: 21px;
  }

  .contact-route-section {
    padding: 48px 0;
  }

  .contact-route-grid {
    grid-template-columns: 1fr;
  }

  .contact-route-card,
  .contact-route-card:nth-child(2) {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid #dfe4e8;
  }

  .contact-route-card:last-child {
    border-bottom: 0;
  }

  .contact-form-section {
    padding: 48px 0 54px;
  }

  .contact-form-copy h2,
  .contact-service-panel h2 {
    font-size: 34px;
  }

  .contact-next-list {
    margin-top: 28px;
  }

  .contact-next-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .contact-next-list h3 {
    font-size: 21px;
  }

  .contact-form-panel {
    padding: 22px;
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .contact-service-section {
    padding: 48px 0 54px;
  }

  .contact-service-panel {
    padding-top: 28px;
  }
}

@media (max-width: 980px) {
  .agent-page .amy-agent-hero,
  .agent-page .amy-hero-stage {
    min-height: 660px;
  }

  .agent-page .amy-hero-stage,
  .agent-bio-grid {
    grid-template-columns: 1fr;
  }

  .agent-page .amy-hero-copy {
    max-width: 570px;
    padding: 46px 0 315px;
  }

  .agent-page .amy-agent-hero::before {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 46%, rgba(255,255,255,.5) 72%, rgba(255,255,255,.12) 100%),
      url("/assets/images/amy-louisville-skyline-joshua-michaels.webp") center right / cover no-repeat;
  }

  .agent-page .amy-hero-cutout {
    right: 4vw;
    bottom: -250px;
    height: 680px;
  }

  .agent-bio-grid {
    gap: 28px;
  }

  .agent-bio-photo {
    max-width: 420px;
  }

  .agent-awards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #dfe4e8;
  }

  .agent-award,
  .agent-award:first-child,
  .agent-award:last-child {
    padding: 20px 0;
    border-bottom: 1px solid #dfe4e8;
  }

  .agent-award:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .agent-testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .agent-page .amy-agent-hero,
  .agent-page .amy-hero-stage {
    min-height: 650px;
  }

  .agent-page .amy-agent-hero::before {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 54%, rgba(255,255,255,.58) 82%, rgba(255,255,255,.2) 100%),
      url("/assets/images/amy-louisville-skyline-joshua-michaels.webp") center right / cover no-repeat;
  }

  .agent-page .amy-hero-copy {
    padding: 38px 0 285px;
  }

  .agent-page .amy-hero-copy h1 {
    font-size: 42px;
  }

  .agent-page .amy-hero-copy .lede {
    max-width: 330px;
    font-size: 16px;
  }

  .agent-page .amy-agent-hero .hero-actions {
    max-width: 310px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .agent-page .amy-agent-hero .button {
    width: 100%;
    min-height: 50px;
  }

  .agent-page .amy-hero-cutout {
    right: -64px;
    bottom: -210px;
    height: 560px;
  }

  .agent-stats-wrap {
    margin-top: 0;
  }

  .agent-stats-wrap .stat {
    padding: 20px 22px;
  }

  .agent-bio-section {
    padding: 40px 0 24px;
  }

  .agent-bio-grid {
    padding-bottom: 28px;
  }

  .agent-bio-photo {
    max-width: none;
  }

  .agent-bio-copy h2 {
    font-size: 32px;
  }

  .agent-awards {
    grid-template-columns: 1fr;
  }

  .agent-award,
  .agent-award:first-child,
  .agent-award:last-child,
  .agent-award:nth-last-child(-n+2) {
    padding: 18px 0;
    border-bottom: 1px solid #dfe4e8;
  }

  .agent-award:last-child {
    border-bottom: 0;
  }

  .agent-row-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .agent-listing-grid .listing-photo {
    height: 210px;
  }

  .agent-community-grid .community {
    min-height: 180px;
  }

  .agent-review-meta {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .agent-testimonial {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 22px;
  }
}

.agent-page .agent-hero-portrait {
  right: clamp(72px, 12vw, 180px);
  bottom: 58px;
  width: min(32vw, 390px);
  height: 430px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 24px 54px rgba(5, 11, 17, .26);
  filter: none;
}

.agent-adam-page .agent-hero-portrait {
  object-position: center 18%;
}

@media (max-width: 980px) {
  .agent-page .agent-hero-portrait {
    right: 5vw;
    bottom: 42px;
    width: min(42vw, 340px);
    height: 390px;
  }
}

@media (max-width: 680px) {
  .agent-page .agent-hero-portrait {
    right: 20px;
    bottom: 32px;
    width: min(48vw, 220px);
    height: 270px;
    border-radius: 7px;
  }
}
