:root {
  --red: #b51f2e;
  --red-dark: #7d1420;
  --red-soft: #fbeaec;
  --ink: #292522;
  --muted: #665f59;
  --cream: #fbf6ef;
  --cream-deep: #f3e9dd;
  --white: #ffffff;
  --line: #e4d9cf;
  --shadow: 0 18px 48px rgba(74, 43, 34, 0.12);
  --page: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font-family: Arial, Helvetica, sans-serif;
}

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

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

button,
input,
select {
  font-size: 1rem;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 4px solid rgba(181, 31, 46, 0.28);
  outline-offset: 3px;
}

.service-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
  padding: 6px var(--gutter);
  background: var(--red-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-ribbon a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(125, 20, 32, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 24px rgba(53, 34, 28, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(calc(100% - (var(--gutter) * 2)), var(--page));
  min-height: 84px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  width: 166px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 38px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 27px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-phone,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 13px 24px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-phone,
.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 9px 20px rgba(181, 31, 46, 0.2);
}

.header-phone:hover,
.button-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
}

.hero {
  padding: clamp(42px, 5vw, 66px) var(--gutter) 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(181, 31, 46, 0.08), transparent 26%),
    linear-gradient(180deg, var(--cream) 0%, #fffaf5 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 6vw, 86px);
  width: min(100%, var(--page));
  margin: 0 auto;
}

.hero-copy {
  padding-bottom: 42px;
}

.eyebrow,
.form-kicker,
.seller-story-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ffd2d7;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 4.5vw, 4.45rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 strong {
  color: var(--red);
  white-space: nowrap;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.hero-points {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.hero-points span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
}

.hero-points svg {
  flex: 0 0 auto;
  padding: 3px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
}

.hero-actions {
  display: none;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-dark);
}

.hero-call span {
  display: grid;
  line-height: 1.3;
}

.hero-call span:first-child {
  font-size: 0.76rem;
}

.hero-call strong {
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 440px;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  top: -18px;
  right: -18px;
  width: 56%;
  height: 62%;
  border-radius: 28px;
  background: var(--red);
  content: "";
}

.hero-visual img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-photo-note {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(43, 29, 24, 0.18);
  backdrop-filter: blur(10px);
}

.hero-photo-note svg {
  flex: 0 0 auto;
  color: var(--red);
}

.hero-photo-note span {
  display: grid;
  line-height: 1.3;
}

.hero-photo-note strong {
  font-size: 0.95rem;
}

.hero-photo-note small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-form-card {
  position: relative;
  z-index: 4;
  width: min(100%, var(--page));
  margin: -96px auto 0;
  padding: clamp(26px, 3vw, 38px);
  border-top: 6px solid var(--red);
  border-radius: 20px 20px 0 0;
  background: var(--white);
  box-shadow: 0 -10px 42px rgba(74, 43, 34, 0.12);
}

.lead-form {
  display: grid;
  gap: 18px;
}

.form-step-1 {
  grid-template-columns: minmax(230px, 0.8fr) minmax(340px, 1.35fr) auto;
  align-items: end;
}

.form-step-1 .privacy-note {
  grid-column: 2 / -1;
}

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

.form-step-2 .form-heading,
.form-step-2 .address-summary,
.form-step-2 .field-row,
.form-step-2 > label,
.form-step-2 .consent-row {
  grid-column: 1 / -1;
}

.form-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.form-heading > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.lead-form label:not(.consent-row) {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 58px;
  padding: 12px 15px;
  border: 2px solid #d9cec5;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

.lead-form input::placeholder {
  color: #817872;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--red);
  outline: 3px solid rgba(181, 31, 46, 0.13);
}

.address-autocomplete {
  position: relative;
}

.address-suggestions {
  position: absolute;
  z-index: 100;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.address-suggestion {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  line-height: 1.4;
  text-align: left;
}

.address-suggestion:hover,
.address-suggestion.is-active {
  background: var(--red-soft);
}

.geoapify-attribution {
  color: var(--muted);
  font-size: 0.68rem;
  text-decoration: underline;
}

.address-field-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.address-field-meta > span {
  min-width: 0;
}

.address-field-meta .geoapify-attribution {
  flex: 0 0 auto;
}

.form-button {
  min-height: 58px;
  white-space: nowrap;
}

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

.optional-label {
  color: var(--muted);
  font-weight: 400;
}

.address-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  border-radius: 10px;
  background: var(--cream);
}

.address-summary span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.address-summary svg {
  color: var(--red);
}

.address-summary button {
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-weight: 800;
  text-decoration: underline;
}

.consent-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.consent-row input {
  width: 22px;
  min-height: 22px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.privacy-note svg {
  color: var(--red);
}

.form-success {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
}

.form-success h3 {
  margin: 16px 0 4px;
  font-size: 1.65rem;
}

.form-success p {
  margin: 0 0 10px;
  color: var(--muted);
}

.text-link {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.proof-bar {
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--page));
  margin: 0 auto;
}

.proof-inner > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 104px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.proof-inner > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-inner svg {
  flex: 0 0 auto;
  color: var(--red);
}

.proof-inner span {
  display: grid;
  line-height: 1.3;
}

.proof-inner strong {
  font-size: 0.93rem;
}

.proof-inner small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.section,
.seller-stories-inner,
.questions-inner {
  width: min(calc(100% - (var(--gutter) * 2)), var(--page));
  margin: 0 auto;
  padding-top: clamp(60px, 6vw, 82px);
  padding-bottom: clamp(60px, 6vw, 82px);
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.final-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.process-section {
  position: relative;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 38px;
}

.process-grid::before {
  position: absolute;
  z-index: -1;
  top: 41px;
  right: 15%;
  left: 15%;
  height: 2px;
  background: var(--cream-deep);
  content: "";
}

.process-step {
  padding: 0 24px 20px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px var(--cream-deep);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin: 24px auto 20px;
  border-radius: 18px;
  background: var(--red-soft);
  color: var(--red);
}

.process-step h3,
.difference-card h3,
.seller-story-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.3;
}

.process-step p,
.difference-card p,
.seller-story-card p:not(.seller-story-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.process-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  margin: 24px auto 0;
  padding: 11px 18px;
  border-radius: 99px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.process-reassurance svg {
  color: var(--red);
}

.process-tracks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 38px;
}

.process-track {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(74, 43, 34, 0.07);
}

.process-track-buy {
  border-color: #d9c1c3;
  background: #fff8f7;
}

.process-track-label {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-track > h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
}

.process-track-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.process-track-list li {
  display: grid;
  grid-template-columns: 29px 38px 1fr;
  align-items: start;
  gap: 10px;
}

.process-track-number {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-track-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
}

.process-track-list h4 {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.process-track-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  background: var(--cream);
}

.about-media {
  position: relative;
  min-height: 660px;
}

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

.about-media-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(125, 20, 32, 0.94);
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-media-caption strong {
  font-size: 1rem;
}

.about-media-caption span {
  margin-top: 3px;
  color: #f6dadd;
  font-size: 0.8rem;
}

.about-content {
  align-self: center;
  max-width: 760px;
  padding: clamp(64px, 7vw, 100px) var(--gutter);
}

.about-situations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 28px;
}

.about-situation {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.about-situation svg {
  flex: 0 0 auto;
  color: var(--red);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 38px auto 0;
}

.difference-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(74, 43, 34, 0.07);
}

.difference-card .card-icon {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red);
}

.seller-stories-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8f2eb;
}

.seller-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 38px auto 0;
}

.seller-story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(74, 43, 34, 0.08);
}

.seller-story-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.seller-story-content {
  padding: 21px 22px 24px;
}

.seller-testimonial-card {
  border-color: #e5d3ca;
}

.seller-testimonial-name {
  font-size: 1.26rem !important;
}

.seller-testimonial-location {
  margin: 4px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.86rem !important;
  font-weight: 700;
}

.seller-story-rating {
  display: flex;
  gap: 3px;
  margin: 12px 0 0 !important;
  color: #c9961a;
}

.seller-story-quote {
  margin: 17px 0 0 !important;
  color: var(--ink) !important;
  font-size: 0.96rem !important;
  line-height: 1.72 !important;
}

.seller-story-kicker {
  margin-bottom: 9px;
}

.seller-stories-disclosure {
  max-width: 860px;
  margin: 24px auto 0;
  padding: 12px 16px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
  text-align: center;
}

.compare-section {
  max-width: 1060px;
}

.comparison-table {
  overflow: hidden;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(74, 43, 34, 0.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > div {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 62px;
  padding: 13px 20px;
  border-right: 1px solid var(--line);
}

.comparison-row > div:last-child {
  border-right: 0;
}

.comparison-row > div:first-child {
  font-weight: 800;
}

.comparison-row > div:nth-child(2) {
  background: #fff4f5;
  color: var(--red-dark);
  font-weight: 700;
}

.comparison-row > div:nth-child(2) svg {
  color: var(--red);
}

.comparison-head {
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.comparison-head > div:nth-child(2) {
  background: var(--red);
  color: var(--white);
}

.mini-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
}

.comparison-note {
  max-width: 860px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.questions-band {
  background: var(--cream);
}

.questions-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: start;
}

.questions-list {
  display: grid;
  gap: 12px;
}

.questions-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.questions-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

.questions-list summary::-webkit-details-marker {
  display: none;
}

.questions-list summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  font-size: 1.25rem;
  transition: transform 160ms ease;
}

.questions-list details[open] summary span {
  transform: rotate(45deg);
}

.questions-list details[open] summary {
  color: var(--red-dark);
}

.questions-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: clamp(64px, 7vw, 88px) max(var(--gutter), calc((100vw - var(--page)) / 2));
  background:
    linear-gradient(120deg, rgba(125, 20, 32, 0.94), rgba(181, 31, 46, 0.96)),
    url("../public/dated-home-interior.webp") center / cover;
  color: var(--white);
}

.final-copy h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(1.95rem, 2.85vw, 2.75rem);
  font-weight: 600;
}

.final-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #f9dde0;
}

.final-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  font-size: 1.12rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.button-light {
  min-width: 230px;
  background: var(--white);
  color: var(--red-dark);
  box-shadow: 0 12px 30px rgba(82, 12, 22, 0.25);
}

.button-light:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.site-footer {
  padding: 58px max(var(--gutter), calc((100vw - var(--page)) / 2)) 24px;
  background: #26211f;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 54px;
}

.footer-main > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-main > div:first-child {
  max-width: 420px;
}

.site-footer .logo {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--white);
}

.site-footer .logo-image {
  width: 150px;
}

.footer-main p,
.footer-main span,
.footer-main a,
.footer-disclaimer,
.footer-bottom {
  color: #cabfba;
  font-size: 0.82rem;
}

.footer-main strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.88rem;
}

.footer-main a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid #4b413d;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #4b413d;
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 1000px) {
  .header-inner {
    gap: 18px;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.82rem;
  }

  .header-phone {
    padding: 12px 16px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 42px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .form-step-1 {
    grid-template-columns: 1fr 1.4fr;
  }

  .form-step-1 .form-heading {
    grid-column: 1 / -1;
  }

  .form-step-1 .privacy-note {
    grid-column: 1 / -1;
  }

  .about-band {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 66px;
  }

  .service-ribbon {
    justify-content: center;
    text-align: center;
  }

  .service-ribbon a {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .logo-image {
    width: 142px;
  }

  .header-phone {
    display: none;
  }

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

  .nav-links {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px var(--gutter) 18px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 16px 26px rgba(53, 34, 28, 0.12);
  }

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

  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-actions {
    display: flex;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-form-card {
    margin-top: 30px;
    border-radius: 18px 18px 0 0;
  }

  .form-step-1,
  .form-step-2 {
    grid-template-columns: 1fr;
  }

  .form-step-1 .form-heading,
  .form-step-1 .privacy-note,
  .form-step-2 .form-heading,
  .form-step-2 .address-summary,
  .form-step-2 .field-row,
  .form-step-2 > label,
  .form-step-2 .consent-row {
    grid-column: 1;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .proof-inner > div,
  .proof-inner > div:first-child {
    justify-content: flex-start;
    min-height: 88px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-inner > div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    padding: 18px 0;
    text-align: left;
  }

  .step-number {
    grid-row: 1 / 4;
  }

  .step-icon {
    display: none;
  }

  .process-step p {
    margin-top: 7px;
  }

  .about-band {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 400px;
  }

  .difference-grid,
  .seller-stories-grid,
  .questions-inner {
    grid-template-columns: 1fr;
  }

  .questions-inner {
    gap: 38px;
  }

  .comparison-table {
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .comparison-row > div {
    min-height: auto;
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-row > div:last-child {
    border-bottom: 0;
  }

  .comparison-row > div:first-child {
    background: var(--ink);
    color: var(--white);
  }

  .comparison-row:not(.comparison-head) > div:nth-child(2)::before,
  .comparison-row:not(.comparison-head) > div:nth-child(3)::before {
    min-width: 112px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .comparison-row:not(.comparison-head) > div:nth-child(2)::before {
    color: var(--red-dark);
    content: "Sell to Vector";
  }

  .comparison-row:not(.comparison-head) > div:nth-child(3)::before {
    content: "List with agent";
  }

  .final-offer {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 66px;
    padding: 12px 18px;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 -8px 24px rgba(74, 20, 29, 0.22);
    font-weight: 800;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.7rem);
  }

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

  .hero-visual {
    min-height: 330px;
  }

  .hero-photo-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
  }

  .hero-form-card {
    padding: 26px 20px 30px;
  }

  .proof-inner {
    grid-template-columns: 1fr;
  }

  .proof-inner > div:nth-child(odd) {
    border-right: 0;
  }

  .about-media {
    min-height: 330px;
  }

  .about-media-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .about-situations {
    grid-template-columns: 1fr;
  }

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

  .difference-card .card-icon {
    grid-row: auto;
    margin-bottom: 16px;
  }

  .process-reassurance {
    align-items: flex-start;
    border-radius: 12px;
  }

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

  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Conversion hero: left property image, right complete offer form */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(430px, 44%);
  min-height: 610px;
  padding: 0;
  background: var(--cream);
}

.hero-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
}

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

.hero-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 20, 18, 0.82) 0%, rgba(31, 20, 18, 0.58) 52%, rgba(31, 20, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(31, 20, 18, 0.45), transparent 58%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--gutter);
  width: min(650px, calc(100% - (var(--gutter) * 2)));
  padding: 0;
  color: var(--white);
  transform: translateY(-50%);
}

.hero .eyebrow {
  color: #ffd8dc;
}

.hero h1 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(3.5rem, 5.25vw, 5.45rem);
  line-height: 0.98;
}

.hero h1 strong {
  display: block;
  color: #ff6b79;
  white-space: normal;
}

.hero-lede {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
}

.hero-points {
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 12px 22px;
  margin-top: 28px;
}

.hero-points span {
  color: var(--white);
  font-size: 0.9rem;
}

.hero-points svg {
  background: rgba(255, 255, 255, 0.16);
  color: #ff8792;
}

.hero-call {
  width: fit-content;
  margin-top: 30px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  background: rgba(36, 24, 21, 0.38);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-call span:first-child {
  color: rgba(255, 255, 255, 0.72);
}

.hero-form-card {
  display: flex;
  align-items: flex-start;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: clamp(20px, 2.4vw, 36px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(125, 20, 32, 0.97), rgba(125, 20, 32, 0.97)),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.14), transparent 34%);
  box-shadow: none;
  color: var(--white);
}

.hero-form-card .lead-form {
  width: min(100%, 570px);
  margin: 0 auto;
  gap: 8px;
}

.hero-form-card .form-heading h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.08;
}

.hero-form-card .form-kicker {
  color: #ffd2d7;
}

.hero-form-card .optional-label {
  color: rgba(255, 255, 255, 0.72);
}

.hero-form-card .form-heading > p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.hero-form-card .lead-form label:not(.consent-row) {
  color: var(--white);
}

.hero-form-card .lead-form input,
.hero-form-card .lead-form select {
  min-height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  background: var(--white);
}

.hero-form-card .lead-form input:focus,
.hero-form-card .lead-form select:focus {
  border-color: #ffcbd0;
  outline-color: rgba(255, 255, 255, 0.2);
}

.hero-form-card .consent-row,
.hero-form-card .privacy-note {
  color: rgba(255, 255, 255, 0.8);
}

.hero-form-card .privacy-note {
  justify-content: center;
}

.hero-form-card .privacy-note svg {
  color: #ffd2d7;
}

.hero-form-card .geoapify-attribution {
  color: rgba(255, 255, 255, 0.72);
}

.hero-form-card .address-field-meta {
  color: rgba(255, 255, 255, 0.72);
}

.hero-form-card .form-button {
  width: 100%;
  min-height: 54px;
  font-size: 1.02rem;
}

.hero-form-card .form-success {
  color: var(--white);
}

.hero-form-card .form-success h3 {
  color: var(--white);
}

.hero-form-card .form-success p,
.hero-form-card .form-success .text-link {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 50%) minmax(430px, 50%);
  }

  .hero-copy {
    left: var(--gutter);
  }

  .hero h1 {
    font-size: clamp(3.25rem, 5.5vw, 4.65rem);
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-form-card {
    padding: 34px 30px;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media {
    min-height: 590px;
  }

  .hero-copy {
    top: auto;
    bottom: 46px;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 12vw, 4.5rem);
  }

  .hero-points {
    grid-template-columns: repeat(3, minmax(0, auto));
  }

  .hero-form-card {
    padding: 50px var(--gutter) 52px;
  }
}

@media (max-width: 560px) {
  .hero-media {
    min-height: 560px;
  }

  .hero-media > img {
    object-position: 58% center;
  }

  .hero-media-shade {
    background:
      linear-gradient(0deg, rgba(31, 20, 18, 0.9) 0%, rgba(31, 20, 18, 0.58) 58%, rgba(31, 20, 18, 0.14) 100%);
  }

  .hero-copy {
    bottom: 30px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 3.75rem);
  }

  .hero-lede {
    margin-top: 18px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 20px;
  }

  .hero-call {
    margin-top: 22px;
  }

  .hero-form-card {
    padding: 40px 20px 44px;
  }

  .hero-form-card .form-heading h2 {
    font-size: 2.25rem;
  }
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-error {
  margin: -2px 0 0;
  padding: 11px 13px;
  border: 1px solid rgba(181, 31, 46, 0.42);
  border-radius: 9px;
  background: #fff1f2;
  color: #8e1522;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.address-field-meta.is-error {
  color: #b51f2e;
  font-weight: 700;
}

.hero-form-card .form-error {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(105, 16, 28, 0.82);
  color: #fff4f4;
}

.hero-form-card .address-field-meta.is-error {
  color: #ffd5d9;
}

@media (max-width: 820px) {
  .process-tracks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .process-track {
    padding: 24px 20px;
  }

  .process-track-list li {
    grid-template-columns: 28px 34px 1fr;
    gap: 8px;
  }
}

/* Homepage refinement: clearer hierarchy and a more homeowner-friendly first view. */
@media (min-width: 821px) {
  .header-inner {
    width: calc(100% - (var(--gutter) * 2));
    max-width: none;
    gap: 20px;
  }
}

.nav-links {
  justify-content: flex-end;
  width: 100%;
  justify-self: stretch;
  gap: clamp(22px, 2.2vw, 34px);
  font-size: 1.3rem;
}

.header-phone {
  min-height: 62px;
  padding-right: 28px;
  padding-left: 28px;
  font-size: 1.02rem;
}

.field-label {
  display: block;
  min-height: 1.1em;
  line-height: 1.2;
}

.optional-label {
  margin-left: 4px;
}

.hero-call {
  min-height: 60px;
  padding: 12px 20px;
  border: 0;
  background: var(--red);
  box-shadow: 0 12px 26px rgba(73, 9, 18, 0.34);
  font-size: 1.02rem;
}

.hero-call:hover,
.hero-call:focus-visible {
  background: #d7283a;
  transform: translateY(-1px);
}

.hero-call span:first-child {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.hero-call strong {
  font-size: 1.22rem;
}

.process-track-sell {
  border: 2px solid #e4c4c7;
  box-shadow: 0 15px 35px rgba(112, 24, 35, 0.12);
}

.process-track-buy {
  border-color: #f0ded8;
  background: #fffaf7;
  box-shadow: none;
}

.process-track-buy .process-track-label,
.process-track-buy .process-track-number,
.process-track-buy .process-track-icon {
  opacity: 0.72;
}

.comparison-head > div:nth-child(2) {
  font-size: 1.04rem;
  font-weight: 900;
}

.comparison-row > div:nth-child(3) {
  color: #716966;
  font-size: 0.86rem;
}

.comparison-head > div:nth-child(3) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .nav-links {
    gap: 20px;
    font-size: 0.94rem;
  }
}

@media (max-width: 560px) {
  .hero-call {
    min-height: 56px;
  }
}
