:root {
  --ink: #14110d;
  --muted: #746c61;
  --paper: #fffaf0;
  --soft: #f4ead9;
  --charcoal: #070604;
  --charcoal-soft: #17130e;
  --gold: #d7b46a;
  --gold-soft: #f0d99f;
  --clay: #c89745;
  --clay-dark: #9a6d2d;
  --line: rgba(20, 17, 13, 0.13);
  --shadow: 0 24px 70px rgba(7, 6, 4, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
input,
select,
button {
  font: 400 16px/1.5 "Inter", Arial, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(215, 180, 106, 0.24);
  background: rgba(7, 6, 4, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand img {
  display: block;
  width: 118px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a,
.header-book,
.header-phone,
.footer-links a {
  text-decoration: none;
}

.desktop-nav a:hover,
.header-book:hover,
.header-phone:hover,
.footer-links a:hover {
  color: var(--gold-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-book,
.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

.header-book {
  border: 1px solid rgba(229, 194, 111, 0.7);
  color: var(--paper);
}

.header-phone {
  border: 0;
  background: var(--gold);
  color: var(--charcoal);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(28px, 5vw, 64px);
  min-height: calc(100vh - 74px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.91), rgba(7, 6, 4, 0.58)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--paper);
}

.hero-content {
  align-self: center;
  max-width: 760px;
}

.eyebrow,
.form-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Lora", Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.hero-checks li,
.trust-band span,
.city-grid span,
.situations-grid span {
  border-radius: 8px;
}

.hero-checks li {
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.13);
  border: 1px solid rgba(255, 253, 248, 0.2);
  font-weight: 700;
}

.rating-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: rgba(255, 253, 248, 0.82);
}

.rating-strip strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.14);
  color: var(--paper);
  font-size: 1.2rem;
}

.offer-card {
  align-self: center;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  border-top: 8px solid var(--gold);
}

.offer-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.offer-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.offer-form label {
  display: grid;
  gap: 8px;
  color: #33423b;
  font-size: 0.94rem;
  font-weight: 700;
}

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

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

input:focus,
select:focus {
  outline: 3px solid rgba(214, 168, 79, 0.28);
  border-color: var(--gold);
}

.consent-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.optional-consent {
  margin-top: -6px;
}

.consent-row input {
  min-height: auto;
  margin-top: 4px;
}

button,
.cta-panel a {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--clay);
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

button:hover,
.cta-panel a:hover {
  transform: translateY(-1px);
  background: var(--clay-dark);
  color: #fffaf0;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.success {
  color: #28704d;
}

.form-status.error {
  color: #a1342c;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-band span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  background: #f8f4ea;
  color: var(--charcoal);
  font-weight: 800;
  text-align: center;
}

.media-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 20px;
  align-items: center;
  padding: 26px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.media-strip p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.media-strip div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.media-strip span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf7ed;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.content-section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.about-section {
  background: var(--charcoal);
  color: var(--paper);
}

.about-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(215, 180, 106, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.14), rgba(255, 250, 240, 0.03)),
    var(--charcoal-soft);
  box-shadow: 0 24px 80px rgba(7, 6, 4, 0.3);
}

.about-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.about-copy {
  color: rgba(255, 250, 240, 0.78);
  font-size: 1.08rem;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 18px;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.founder-grid article {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(215, 180, 106, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
}

.founder-photo {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px dashed rgba(215, 180, 106, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.18), rgba(255, 250, 240, 0.03)),
    rgba(7, 6, 4, 0.22);
  color: rgba(255, 250, 240, 0.68);
  font-weight: 800;
  text-align: center;
}

.story-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-grid h3 {
  font-family: "Lora", Georgia, serif;
  color: var(--paper);
  font-size: 1.65rem;
}

.founder-grid p {
  color: rgba(255, 250, 240, 0.76);
}

.promise-section {
  background: #fffaf0;
}

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

.promise-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(230, 111, 63, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(22, 35, 29, 0.08);
}

.promise-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(230, 111, 63, 0.1);
  color: var(--clay-dark);
  font-weight: 800;
}

.promise-grid h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.5rem;
}

.promise-grid p {
  color: var(--muted);
}

.probate-section {
  background: #ffffff;
}

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

.probate-grid article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.probate-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--clay-dark);
  font-weight: 800;
}

.probate-grid h3,
.probate-callout h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.45rem;
}

.probate-grid p,
.probate-callout p {
  color: var(--muted);
}

.probate-mini-section {
  margin-top: 28px;
}

.compact-heading {
  margin-bottom: 18px;
}

.compact-heading h3 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

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

.probate-check-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.probate-check-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.probate-check-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.probate-path-grid span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(215, 180, 106, 0.36);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.probate-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
  margin-top: 18px;
  padding: 26px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--paper);
}

.probate-callout p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(22, 35, 29, 0.08);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-row span {
  padding: 18px;
  border-left: 1px solid var(--line);
}

.compare-row span:first-child {
  border-left: 0;
  font-weight: 800;
}

.compare-head {
  background: var(--charcoal);
  color: var(--paper);
  font-weight: 800;
}

.compare-row:not(.compare-head) span:nth-child(2) {
  background: rgba(84, 120, 107, 0.08);
  color: var(--charcoal);
  font-weight: 700;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 64px);
  background: var(--charcoal);
  color: var(--paper);
}

.cta-panel .eyebrow {
  color: #e5c26f;
}

.cta-panel p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.78);
}

.cta-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0 24px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cta-panel a.secondary-cta {
  border: 1px solid rgba(229, 194, 111, 0.66);
  background: transparent;
  color: var(--paper);
}

.cta-panel a.secondary-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.sell-guide-section {
  background: #ffffff;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.guide-author {
  position: sticky;
  top: 92px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.guide-author span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-author strong {
  display: block;
  color: var(--charcoal);
  font-family: "Lora", Georgia, serif;
  font-size: 1.8rem;
}

.guide-author p,
.guide-copy p:not(.eyebrow) {
  color: var(--muted);
}

.guide-copy {
  max-width: 880px;
}

.guide-copy h2 {
  margin-bottom: 20px;
}

.guide-copy p:not(.eyebrow) {
  font-size: 1.12rem;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--soft);
}

.area-image {
  min-height: 520px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(36, 63, 54, 0.08), rgba(36, 63, 54, 0.24)),
    url("https://images.unsplash.com/photo-1600472760866-1eb1a0ab5e55?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.area-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(215, 180, 106, 0.32);
  border-top: 1px solid rgba(215, 180, 106, 0.32);
  border-bottom: 1px solid rgba(215, 180, 106, 0.32);
}

.stats-band div {
  display: grid;
  gap: 8px;
  min-height: 150px;
  place-items: center;
  padding: 24px;
  background: var(--charcoal);
  color: var(--paper);
  text-align: center;
}

.stats-band strong {
  color: var(--gold);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.stats-band span {
  color: rgba(255, 250, 240, 0.74);
  font-weight: 800;
}

.city-grid,
.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.city-grid span,
.situations-grid span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  font-weight: 800;
}

.city-grid span {
  font-size: 0.95rem;
}

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

.steps-grid article,
.reviews-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.steps-grid article {
  border-top: 5px solid var(--gold);
}

.steps-grid span {
  color: var(--clay);
  font-weight: 800;
}

.steps-grid p,
.reviews-grid p,
.faq-section p {
  color: var(--muted);
}

.reviews-section {
  background: #f8f4ea;
}

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

.reviews-grid article {
  min-height: 260px;
}

.reviews-grid p {
  font-family: "Lora", Georgia, serif;
  color: var(--ink);
  font-size: 1.25rem;
}

.seller-video-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: #ffffff;
}

.seller-video-copy {
  max-width: 520px;
}

.seller-video-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.seller-video-frame {
  position: relative;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(36, 63, 54, 0.18);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 22px 48px rgba(36, 63, 54, 0.12);
  justify-self: center;
  overflow: hidden;
}

.seller-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  object-fit: cover;
}

.custom-video-caption {
  position: absolute;
  right: 16px;
  bottom: 74px;
  left: 16px;
  display: none;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(8, 17, 14, 0.82);
  color: #ffffff;
  font-size: clamp(0.9rem, 2vw, 1.04rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.custom-video-caption.is-visible {
  display: block;
}

.video-placeholder {
  display: grid;
  min-height: 100%;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  color: var(--paper);
  text-align: center;
}

.video-placeholder strong {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.video-placeholder p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
}

.play-mark {
  display: inline-grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 2px solid rgba(229, 194, 111, 0.92);
  border-radius: 50%;
  background: rgba(8, 17, 14, 0.28);
}

.play-mark::before {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--gold);
  content: "";
}

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

.situations-grid span {
  min-height: 96px;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  color: var(--paper);
  text-align: center;
}

.faq-section {
  background: var(--soft);
}

details {
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.48);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.1rem;
  font-weight: 800;
}

details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 64px);
  background: var(--charcoal);
  color: var(--paper);
}

.site-footer p {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.7);
}

.site-footer .brand {
  color: var(--paper);
}

.site-footer .brand img {
  width: 140px;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.footer-disclaimer {
  flex-basis: 100%;
  max-width: 980px;
  font-size: 0.86rem;
  line-height: 1.65;
}

.collection-notice {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.collection-notice a {
  color: var(--charcoal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  min-height: 100vh;
  padding: clamp(28px, 6vw, 78px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(248, 244, 234, 0.86), rgba(255, 253, 248, 1)),
    var(--paper);
}

.legal-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--clay);
  font-weight: 800;
}

.legal-shell h1 {
  max-width: 760px;
  margin-bottom: 12px;
}

.legal-shell h2 {
  margin: 34px 0 10px;
  color: var(--charcoal);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.legal-shell p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-shell a {
  color: var(--charcoal);
  font-weight: 800;
}

.legal-updated {
  margin-top: 0;
  color: var(--clay);
  font-weight: 800;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-section,
  .split-section,
  .guide-layout,
  .about-card,
  .area-section,
  .seller-video-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-checks,
  .trust-band,
  .media-strip div,
  .promise-grid,
  .probate-grid,
  .probate-check-grid,
  .probate-path-grid,
  .stats-band,
  .steps-grid,
  .reviews-grid,
  .situations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .probate-callout {
    grid-template-columns: 1fr;
  }

  .founder-grid article {
    grid-template-columns: 1fr;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-row {
    min-width: 820px;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .header-phone {
    width: 100%;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
  }

  .header-book,
  .header-phone {
    width: 100%;
  }

  .hero-section {
    padding-top: 38px;
  }

  .offer-card {
    padding: 20px;
  }

  .form-grid,
  .hero-checks,
  .trust-band,
  .media-strip div,
  .promise-grid,
  .probate-grid,
  .probate-check-grid,
  .probate-path-grid,
  .stats-band,
  .city-grid,
  .steps-grid,
  .reviews-grid,
  .situations-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-panel a,
  .cta-actions,
  .footer-links {
    width: 100%;
  }

  .cta-actions {
    justify-content: stretch;
  }

  .footer-links {
    flex-direction: column;
  }
}
