:root {
  --kw-red: #b40101;
  --kw-red-deep: #7f0000;
  --ink: #111111;
  --charcoal: #262626;
  --muted: #626262;
  --line: #dddddd;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --page-gutter: clamp(48px, 11vw, 176px);
  --content-max: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px var(--page-gutter);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

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

.brand img {
  display: block;
  width: min(260px, 48vw);
  height: auto;
}

.top-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.page-hero {
  padding: clamp(54px, 8vw, 96px) var(--page-gutter);
  background:
    linear-gradient(90deg, rgba(180, 1, 1, 0.94) 0 16px, transparent 16px),
    linear-gradient(135deg, #ffffff 0%, #f8f8f8 54%, #eeeeee 100%);
}

.page-hero > * {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.page-hero.compact-hero {
  padding-bottom: clamp(34px, 5vw, 56px);
}

.page-hero.state-hero {
  background:
    linear-gradient(90deg, rgba(180, 1, 1, 0.94) 0 16px, transparent 16px),
    linear-gradient(135deg, #ffffff 0%, #f6f6f6 48%, #eaeaea 100%);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 76px);
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 22px;
  color: var(--charcoal);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

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

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--kw-red);
  border-color: var(--kw-red);
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 520px;
  padding: clamp(40px, 5vw, 66px) var(--page-gutter);
  background:
    linear-gradient(90deg, rgba(180, 1, 1, 0.94) 0 16px, transparent 16px),
    linear-gradient(135deg, #ffffff 0%, #f8f8f8 46%, #eeeeee 100%);
}

.hero-media {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: clamp(20px, 4vw, 44px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 8px solid var(--kw-red);
}

.hero-media img {
  display: block;
  width: min(100%, 430px);
  height: auto;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--kw-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  max-width: 760px;
  font-size: clamp(39px, 6vw, 68px);
  line-height: 0.96;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--charcoal);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--kw-red);
}

.button.primary {
  color: #ffffff;
  background: var(--kw-red);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--kw-red-deep);
  border-color: var(--kw-red-deep);
}

.button.secondary {
  color: var(--kw-red);
  background: #ffffff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--kw-red-deep);
  border-color: var(--kw-red-deep);
}

.button.dark-secondary {
  margin-left: 10px;
  color: #ffffff;
  background: transparent;
  border-color: #ffffff;
}

.button.dark-secondary:hover,
.button.dark-secondary:focus-visible {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.option-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.option-strip article {
  min-height: 190px;
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
}

.content-band {
  padding: clamp(34px, 5vw, 68px) var(--page-gutter);
  background: #ffffff;
}

.content-band + .content-band {
  padding-top: 0;
}

.section-heading.compact {
  align-items: center;
  margin-bottom: 28px;
}

.section-heading.compact h2 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 44px);
}

.feature-grid,
.detail-grid,
.stat-row,
.contact-layout {
  display: grid;
  max-width: var(--content-max);
  margin: 0 auto;
  gap: 18px;
}

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

.feature-grid,
.detail-grid,
.comparison-list,
.premium-option-grid,
.support-grid,
.process-steps,
.county-grid {
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid var(--line);
  border-left: 8px solid var(--kw-red);
  background: #ffffff;
}

.feature-card,
.detail-grid article,
.detail-grid a,
.stat-row article,
.contact-card,
.callout {
  display: block;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--kw-red);
  padding: clamp(22px, 3vw, 32px);
}

.feature-card:hover,
.feature-card:focus-visible,
.linked-grid a:hover,
.linked-grid a:focus-visible {
  border-left-color: var(--kw-red-deep);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.feature-card h3,
.detail-grid h2,
.text-block h2,
.callout h3,
.contact-card h2,
.cta-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.feature-card p,
.detail-grid p,
.text-block p,
.contact-card p,
.cta-band p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  max-width: var(--content-max);
  margin: 0 auto 26px;
  gap: 20px;
}

.text-block {
  padding: clamp(22px, 3vw, 34px);
  border-top: 4px solid var(--kw-red);
  background: var(--soft);
}

.callout {
  background: var(--ink);
  border-color: var(--ink);
  border-left-color: var(--kw-red);
}

.callout h3 {
  color: #ffffff;
}

.callout ul,
.contact-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #ededed;
  font-size: 15px;
  line-height: 1.55;
}

.contact-card ul {
  color: var(--muted);
}

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

.county-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--content-max);
  margin: 0 auto;
  gap: 14px;
}

.county-grid article {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--kw-red);
}

.county-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.county-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.45;
}

.county-grid p strong {
  color: var(--ink);
}

.county-grid .county-price {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 12px 0 2px;
  padding: 0 10px;
  color: #ffffff;
  background: var(--kw-red);
  font-size: 13px;
  font-weight: 800;
}

.market-note {
  max-width: var(--content-max);
  margin: 0 auto 24px;
  padding: 18px 20px;
  color: var(--charcoal);
  background: var(--soft);
  border-left: 6px solid var(--kw-red);
  font-size: 15px;
  line-height: 1.5;
}

.seller-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) var(--page-gutter);
  background:
    linear-gradient(90deg, rgba(180, 1, 1, 0.94) 0 16px, transparent 16px),
    radial-gradient(circle at 92% 18%, rgba(180, 1, 1, 0.10), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f7f7 55%, #ececec 100%);
}

.seller-hero-copy,
.seller-hero-panel {
  max-width: var(--content-max);
}

.seller-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(44px, 6.6vw, 82px);
  line-height: 0.95;
}

.seller-hero p:not(.eyebrow):not(.option-label) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--charcoal);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.seller-hero-panel {
  padding: clamp(24px, 4vw, 36px);
  color: #ffffff;
  background: var(--ink);
  border-left: 8px solid var(--kw-red);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.seller-hero-panel span,
.seller-decision-band span,
.option-label {
  display: block;
  color: var(--kw-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.seller-hero-panel strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.seller-hero-panel p {
  color: #f1f1f1 !important;
  opacity: 1;
  font-size: 16px !important;
}

.seller-decision-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seller-decision-band article {
  min-height: 190px;
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
}

.seller-decision-band strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.seller-decision-band p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.seller-options-band,
.seller-support-band,
.seller-process-band {
  padding: clamp(42px, 6vw, 78px) var(--page-gutter);
  background: #ffffff;
}

.seller-support-band {
  background: var(--soft);
}

.premium-option-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1040px;
  margin: 0 auto;
  gap: 14px;
}

.premium-option-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 6px solid var(--kw-red);
}

.premium-option-card:hover,
.premium-option-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
}

.premium-option-card.red-card {
  color: #ffffff;
  background: var(--kw-red);
  border-color: var(--kw-red);
  border-top-color: var(--ink);
}

.option-number {
  color: var(--kw-red);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.red-card .option-number,
.red-card .option-label,
.red-card h3,
.red-card p,
.red-card li {
  color: #ffffff;
}

.premium-option-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
}

.premium-option-card p:not(.option-label) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.premium-option-card ul {
  margin: auto 0 0;
  padding-left: 18px;
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.5;
}

.support-copy {
  max-width: 980px;
  margin: 0 auto 26px;
}

.support-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.support-copy p:not(.eyebrow) {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.support-grid,
.process-steps {
  display: grid;
  max-width: var(--content-max);
  margin: 0 auto;
  gap: 16px;
}

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

.support-grid article,
.process-steps article {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.support-grid h3,
.process-steps h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.support-grid p,
.process-steps p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: #ffffff;
  background: var(--kw-red);
  font-weight: 800;
}

.seller-cta .dark-secondary {
  margin-top: 24px;
}

.stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.stat-row strong {
  display: block;
  color: var(--kw-red);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-row span {
  display: block;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.45;
}

.cta-band {
  padding: clamp(34px, 5vw, 60px) var(--page-gutter);
  color: #ffffff;
  background: var(--ink);
}

.cta-band h2,
.cta-band p {
  max-width: 780px;
  color: #ffffff;
}

.cta-band .button {
  margin-top: 24px;
}

.source-note {
  max-width: var(--content-max);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.comparison-list {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  gap: 16px;
}

.comparison-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px 18px;
  padding: clamp(22px, 3vw, 32px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--kw-red);
}

.comparison-list span {
  grid-row: span 3;
  color: var(--kw-red);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.comparison-list h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
}

.comparison-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.comparison-list a {
  color: var(--kw-red);
  font-weight: 800;
  text-decoration: none;
}

.contact-layout {
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: clamp(34px, 5vw, 68px) var(--page-gutter);
}

.primary-contact {
  background: var(--ink);
  border-color: var(--ink);
  border-left-color: var(--kw-red);
}

.primary-contact h2,
.primary-contact p {
  color: #ffffff;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--kw-red);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  background: var(--kw-red-deep);
}

.option-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--kw-red);
  font-size: 13px;
  font-weight: 800;
}

.option-strip h2 {
  font-size: 26px;
  line-height: 1.1;
}

.option-strip p {
  max-width: 360px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.search-section {
  padding: clamp(34px, 5vw, 64px) var(--page-gutter) 0;
  background: var(--soft);
}

.search-section.tight {
  padding-top: 28px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--content-max);
  margin: 0 auto 22px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--kw-red);
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.search-link {
  flex: 0 0 auto;
}

.search-frame-wrap {
  max-width: 1360px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

iframe {
  display: block;
  background: #ffffff;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: var(--ink);
}

.site-footer img {
  width: min(240px, 70vw);
  height: auto;
  background: #ffffff;
  padding: 8px;
}

.site-footer p {
  margin: 0;
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .top-nav a {
    padding: 0 6px;
  }

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

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

  .option-strip {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .detail-grid,
  .county-grid,
  .stat-row,
  .contact-layout,
  .two-column,
  .seller-hero,
  .seller-decision-band,
  .premium-option-grid,
  .support-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .premium-option-card {
    min-height: auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 8px;
    text-align: left;
  }
}
