:root {
  --charcoal: #2e332e;
  --slate: #434b53;
  --ink: #111315;
  --gold: #cfb06f;
  --gold-bright: #f2cb07;
  --cream: #f7f3ea;
  --white: #ffffff;
  --muted: #68717a;
  --line: rgba(207, 176, 111, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  background: var(--white);
}

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

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

.site-header {
  background: var(--slate);
  border-bottom: 2px solid var(--gold);
}

.header-inner {
  width: min(1170px, calc(100% - 40px));
  min-height: 140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand img {
  width: 156px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: #09131a url("assets/asset-04.png") center / cover no-repeat;
  border-bottom: 9px solid var(--gold);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(5, 15, 24, 0.54) 48%, rgba(4, 12, 20, 0.76)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.66));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1170px, calc(100% - 44px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  align-items: end;
  gap: 28px;
  padding-top: 86px;
}

.hero-copy {
  align-self: center;
  padding-bottom: 22px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
}

.hero h1,
.section h2,
.savings-band h2,
.about-band h2,
.coverage-band h2,
.team-section h2,
.contact-section h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 440px;
  margin: 18px 0 28px;
  font-size: 18px;
  line-height: 1.75;
}

.hero-sub strong {
  color: var(--gold-bright);
}

.primary-button,
.secondary-button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 36px;
  border: 2px solid #262a2f;
  border-radius: 999px;
  background: var(--gold);
  color: var(--slate);
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.24);
}

.primary-button:hover,
.secondary-button:hover,
.lead-form button:hover {
  background: #dfbf78;
  transform: translateY(-1px);
}

.trust-strip {
  width: min(500px, 100%);
  margin-top: 58px;
}

.hero-person {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero-person img {
  width: min(560px, 100%);
  height: 650px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 18px rgba(0, 0, 0, 0.44));
}

.hero-person p {
  position: absolute;
  right: 18px;
  bottom: 44px;
  margin: 0;
  text-align: right;
  color: var(--white);
  font-size: 15px;
  line-height: 1.05;
}

.hero-person strong,
.hero-person span {
  display: block;
}

.section,
.about-band,
.team-section,
.coverage-band,
.savings-band {
  padding: 82px 0;
}

.section-inner {
  width: min(1170px, calc(100% - 44px));
  margin: 0 auto;
}

.process-section {
  background: var(--white);
  text-align: center;
}

.section h2,
.savings-band h2,
.about-band h2,
.values-section h2,
.why-section h2,
.coverage-band h2,
.team-section h2,
.contact-section h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  color: var(--slate);
}

.section-lede {
  max-width: 900px;
  margin: 18px auto 0;
  color: #56606a;
  font-size: 19px;
  line-height: 1.7;
}

.benefit-row {
  max-width: 900px;
  margin: 28px auto 42px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.benefit-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--charcoal);
  font-weight: 700;
  background: #fffaf0;
}

.benefit-row span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold);
}

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

.steps article,
.team-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(67, 75, 83, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(22, 26, 31, 0.08);
}

.steps span {
  color: var(--gold);
  font-family: "Cormorant", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
}

.steps h3,
.list-columns h3,
.about-points h3,
.team-grid h3 {
  margin: 8px 0 10px;
  color: var(--slate);
}

.steps p,
.about-points p,
.problem-copy p,
.coverage-band p,
.savings-band p,
.contact-grid p,
.team-grid p,
.site-footer p {
  line-height: 1.7;
}

.savings-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), #121517);
}

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

.calculator-copy p {
  max-width: 1050px;
  margin: 30px 0 34px;
  color: var(--gold);
  font-size: 21px;
  font-weight: 700;
}

.comparison-calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding: 10px 46px 24px;
  border-radius: 10px;
  color: #000;
  background: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.calculator-column h3 {
  margin: 0 0 26px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}

.zero-list {
  display: grid;
  gap: 12px;
  min-height: 220px;
  align-content: start;
  padding-top: 8px;
  color: #000;
}

.zero-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
}

.zero-list span {
  font-size: 18px;
  font-weight: 800;
}

.zero-list strong {
  color: #000;
  font-size: 22px;
  font-weight: 800;
}

.home-value-control {
  margin-top: 18px;
}

.home-value-control label {
  display: block;
  margin-bottom: 14px;
  color: #000;
  font-size: 15px;
  font-weight: 800;
}

.home-value-control input[type="range"] {
  width: 100%;
  height: 8px;
  accent-color: #000;
  cursor: pointer;
}

.range-labels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
  color: rgba(0, 0, 0, 0.42);
  font-size: 14px;
  font-weight: 500;
}

.range-labels strong {
  color: #000;
  font-size: 16px;
}

.range-labels span:last-child {
  text-align: right;
}

.realtor-costs dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.realtor-costs dl div {
  display: grid;
  gap: 4px;
}

.realtor-costs dt {
  color: #000;
  font-size: 18px;
  font-weight: 800;
}

.realtor-costs dd {
  margin: 0;
  color: #e00024;
  font-size: 18px;
  font-weight: 800;
}

.realtor-costs .total-row {
  margin-top: 2px;
}

.calconic-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  text-align: center;
}

.problem-section {
  background: #f6f7f8;
}

.problem-grid,
.about-grid,
.coverage-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 46px;
}

.problem-copy p {
  margin: 18px 0 30px;
}

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

.list-columns div {
  min-height: 290px;
  padding: 24px;
  border-top: 5px solid var(--gold);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(40, 46, 52, 0.08);
}

.list-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-columns li {
  margin: 12px 0;
  color: #42484f;
}

.list-columns li::before {
  content: "•";
  margin-right: 10px;
  color: var(--gold);
}

.about-band {
  background: var(--slate);
  color: var(--white);
}

.about-band h2,
.about-points h3 {
  color: var(--white);
}

.about-lede {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

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

.about-grid > img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

.about-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.about-points article {
  padding-left: 20px;
  border-left: 4px solid var(--gold);
}

.values-section,
.why-section {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(207, 176, 111, 0.08), rgba(17, 19, 21, 0) 44%),
    linear-gradient(135deg, var(--slate), #171b1f);
}

.values-section h2,
.why-section h2 {
  color: var(--white);
}

.center-heading {
  max-width: 950px;
  margin: 0 auto 42px;
  text-align: center;
}

.center-heading p:not(.section-kicker) {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

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

.values-grid article,
.why-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(207, 176, 111, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.14);
}

.values-grid span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
}

.values-grid h3,
.why-grid h3 {
  margin: 22px 0 12px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.15;
}

.values-grid p,
.why-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.why-section {
  background:
    linear-gradient(135deg, rgba(207, 176, 111, 0.12), rgba(17, 19, 21, 0) 38%),
    #111315;
}

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

.why-grid article {
  min-height: 230px;
  text-align: center;
}

.why-grid article::before {
  content: "";
  display: block;
  width: 48px;
  height: 5px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--gold);
}

.why-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 46px;
  text-align: center;
}

.why-cta .primary-button {
  background: var(--gold);
  color: var(--slate);
}

.why-cta p {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(207, 176, 111, 0.55);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: 0 20px 42px rgba(30, 34, 38, 0.08);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--slate);
  font-weight: 700;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"] {
  width: 100%;
  height: 48px;
  padding: 10px 12px;
  border: 1px solid #d9d5ca;
  border-radius: 4px;
  font: inherit;
  background: var(--white);
}

.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}

.consent input {
  margin-top: 3px;
}

.consent a {
  color: var(--slate);
  font-weight: 800;
  text-decoration: underline;
}

.lead-form button {
  width: 190px;
  border-radius: 6px;
  box-shadow: none;
  cursor: pointer;
}

.team-section {
  text-align: center;
  background: #f6f7f8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.team-grid article {
  min-height: 390px;
  display: grid;
  align-content: end;
  justify-items: center;
}

.team-grid img,
.team-placeholder {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: bottom center;
  border-bottom: 1px solid rgba(207, 176, 111, 0.5);
}

.team-placeholder {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(67, 75, 83, 0.08), rgba(207, 176, 111, 0.18)),
    #ffffff;
}

.team-grid p {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.coverage-band {
  background: var(--white);
}

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

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.market-list span {
  padding: 8px 12px;
  border: 1px solid rgba(207, 176, 111, 0.5);
  border-radius: 4px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
  background: #fffaf0;
}

.coverage-visual {
  position: relative;
}

.coverage-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.coverage-visual div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  color: var(--white);
  background: rgba(17, 19, 21, 0.82);
  border-left: 5px solid var(--gold);
}

.coverage-visual strong,
.coverage-visual span {
  display: block;
}

.coverage-visual strong {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 22px;
}

.coverage-visual span {
  line-height: 1.55;
}

.site-footer {
  padding: 42px 0;
  color: var(--white);
  background: #111315;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.footer-grid img {
  width: 150px;
}

.footer-grid a {
  display: inline-block;
  margin-right: 18px;
  color: var(--gold);
  font-weight: 700;
}

.legal-main {
  background: #f6f7f8;
}

.legal-hero {
  padding: 70px 0 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate), #171b1f);
  border-bottom: 4px solid var(--gold);
}

.legal-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.legal-hero p {
  max-width: 820px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.legal-content {
  padding: 58px 0 76px;
}

.legal-card {
  max-width: 980px;
  padding: 44px;
  border: 1px solid rgba(67, 75, 83, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(22, 26, 31, 0.08);
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--slate);
  font-size: 25px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #414950;
  line-height: 1.78;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-card a {
  color: var(--slate);
  font-weight: 800;
  text-decoration: underline;
}

.blog-list-section {
  padding: 64px 0 80px;
}

.blog-grid {
  display: grid;
  gap: 24px;
}

.blog-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(67, 75, 83, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(22, 26, 31, 0.08);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.blog-card h2 {
  margin: 4px 0 12px;
  color: var(--slate);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.12;
}

.blog-card p {
  color: #414950;
  line-height: 1.7;
}

.blog-date {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.text-link {
  color: var(--slate);
  font-weight: 800;
  text-decoration: underline;
}

.blog-hero h1 {
  max-width: 1050px;
}

.blog-article {
  font-size: 17px;
}

.blog-article .primary-button {
  color: var(--slate);
  text-decoration: none;
}

.reviews-main {
  background: #f6f7f8;
}

.reviews-hero {
  padding: 86px 0 72px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(207, 176, 111, 0.12), rgba(17, 19, 21, 0) 42%),
    linear-gradient(135deg, var(--slate), #171b1f);
  border-bottom: 4px solid var(--gold);
}

.reviews-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1;
}

.reviews-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.reviews-hero .primary-button {
  margin-top: 28px;
  color: var(--slate);
  text-decoration: none;
}

.reviews-actions .primary-button {
  margin-top: 0;
}

.secondary-review-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.reviews-hero-grid,
.review-process-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.review-score-card {
  padding: 34px;
  border: 1px solid rgba(207, 176, 111, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.review-score-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 30px;
  letter-spacing: 3px;
}

.review-score-card strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1.25;
}

.video-stories-section {
  padding: 72px 0;
  background: var(--white);
}

.reviews-section {
  padding: 72px 0;
  background: #f6f7f8;
}

.reviews-intro {
  max-width: 880px;
  margin-bottom: 36px;
}

.reviews-intro h2,
.feedback-heading h2,
.review-process-band h2,
.final-review-cta h2 {
  margin: 0;
  color: var(--slate);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}

.reviews-intro p:not(.section-kicker),
.feedback-heading p:not(.section-kicker),
.final-review-cta p:not(.section-kicker) {
  color: #414950;
  line-height: 1.75;
}

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

.video-review-card {
  overflow: hidden;
  border: 1px solid rgba(67, 75, 83, 0.12);
  border-radius: 8px;
  background: #111315;
  box-shadow: 0 18px 44px rgba(22, 26, 31, 0.14);
}

.video-thumb {
  position: relative;
  min-height: 250px;
  background: var(--slate);
}

.video-thumb img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  opacity: 0.72;
}

.video-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  font-size: 28px;
  transform: translate(-50%, -50%);
  background: rgba(17, 19, 21, 0.52);
}

.video-review-card > div:last-child {
  padding: 24px;
  color: var(--white);
}

.video-review-card p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.video-review-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}

.written-feedback-section {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(207, 176, 111, 0.08), rgba(17, 19, 21, 0) 44%),
    #111315;
}

.feedback-heading {
  max-width: 880px;
  margin-bottom: 36px;
}

.feedback-heading h2 {
  color: var(--white);
}

.feedback-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

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

.written-review-card {
  padding: 26px;
  border: 1px solid rgba(207, 176, 111, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.reviewer-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.reviewer-row > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--slate);
  font-weight: 800;
  background: var(--gold);
}

.reviewer-row strong {
  display: block;
  color: var(--white);
}

.reviewer-row p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.stars {
  margin: 20px 0 14px;
  color: var(--gold);
  letter-spacing: 2px;
}

.written-review-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

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

.testimonial-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(67, 75, 83, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(22, 26, 31, 0.08);
}

.testimonial-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-card h3 {
  margin: 18px 0 12px;
  color: var(--slate);
  font-size: 24px;
  line-height: 1.16;
}

.testimonial-card p,
.review-promise-list p {
  color: #414950;
  line-height: 1.72;
}

.review-process-band {
  padding: 76px 0;
  background: var(--white);
}

.review-promise-list {
  display: grid;
  gap: 16px;
}

.review-promise-list div {
  padding: 22px;
  border-left: 5px solid var(--gold);
  background: #fbfaf7;
}

.review-promise-list strong {
  color: var(--slate);
  font-size: 20px;
}

.final-review-cta {
  max-width: 860px;
  text-align: center;
}

.final-review-cta .primary-button {
  margin-top: 22px;
  color: var(--slate);
  text-decoration: none;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: auto;
    padding: 18px 0;
  }

  .brand img {
    width: 120px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 94px;
    left: 0;
    right: 0;
    z-index: 5;
    display: none;
    padding: 22px;
    background: var(--slate);
    border-top: 1px solid var(--line);
  }

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

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 64px 0 0;
    text-align: center;
  }

  .hero-copy {
    justify-self: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-strip {
    margin: 36px auto 0;
  }

  .hero-person img {
    height: 520px;
  }

  .hero-person p {
    right: 50%;
    bottom: 32px;
    transform: translateX(50%);
    text-align: center;
  }

  .steps,
  .problem-grid,
  .about-grid,
  .coverage-grid,
  .contact-grid,
  .comparison-calculator,
  .team-grid,
  .values-grid,
  .why-grid,
  .reviews-hero-grid,
  .review-process-grid,
  .testimonial-grid,
  .video-review-grid,
  .written-review-grid {
    grid-template-columns: 1fr;
  }

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

  .comparison-calculator {
    gap: 28px;
    padding: 20px 24px 26px;
  }

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

  .zero-list {
    min-height: auto;
    grid-template-columns: repeat(5, auto);
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
  }

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

  .blog-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .hero-inner {
    width: min(100% - 28px, 1170px);
  }

  .nav-links {
    top: 86px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero-person img {
    height: 410px;
  }

  .section,
  .about-band,
  .team-section,
  .coverage-band,
  .savings-band {
    padding: 56px 0;
  }

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

  .comparison-calculator {
    padding: 18px 16px 22px;
  }

  .calculator-column h3 {
    font-size: 22px;
  }

  .range-labels {
    grid-template-columns: 1fr 1fr;
  }

  .range-labels strong {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
  }

  .realtor-costs dl div {
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 12px;
  }

  .realtor-costs dt,
  .realtor-costs dd {
    font-size: 16px;
  }

  .lead-form {
    padding: 22px;
  }

  .legal-card {
    padding: 26px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }
}
