:root {
  --ink: #1d1713;
  --ink-soft: #6a5a4d;
  --deep: #15110f;
  --deep-2: #050404;
  --orange: #e88908;
  --orange-dark: #a95800;
  --orange-soft: #fff0dc;
  --cream: #fff5e7;
  --paper: #fffdf8;
  --line: #e7d8c3;
  --error: #a43a2b;
  --shadow: 0 26px 70px rgba(21, 17, 15, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 86px;
  padding: 10px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(232, 137, 8, 0.34);
  background: rgba(18, 16, 15, 0.96);
  color: white;
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark { width: 72px; height: 72px; flex: none; overflow: hidden; display: block; }
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.brand strong { display: block; color: white; font-family: "Newsreader", Georgia, serif; font-size: 25px; font-weight: 600; line-height: 1; }
.brand small { display: block; margin-top: 5px; color: #d8cbc0; font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
nav a { text-decoration: none; }
nav a:hover { color: var(--orange); }
.nav-phone { padding: 10px 16px; border: 1px solid var(--orange); border-radius: 999px; }
.nav-phone:hover { background: var(--orange); color: var(--deep); }
.site-header .nav-contact { padding: 10px 16px; border: 1px solid var(--orange); border-radius: 999px; background: var(--orange); color: var(--deep); }
.site-header .nav-contact:hover, .site-header .nav-contact:focus-visible { background: #f7a51b; color: var(--deep); outline: 2px solid white; outline-offset: 2px; }
.section-jump-wrap {
  position: relative;
  z-index: 10;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #c66c00;
  background: linear-gradient(100deg, #f7a51b, var(--orange));
}
.section-jump-nav {
  width: 100%;
  min-width: 0;
  padding: 10px clamp(20px, 5vw, 72px);
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: visible;
}
.section-jump-nav > a {
  min-height: 42px;
  padding: 9px 16px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21,17,15,.78);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--deep);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 0 rgba(21,17,15,.18);
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.section-jump-nav > a:hover, .section-jump-nav > a:focus-visible {
  transform: translateY(-1px);
  background: var(--deep);
  color: white;
  box-shadow: 0 5px 0 rgba(21,17,15,.2);
  outline: none;
}
.section-jump-nav > a.nav-quote { border-color: var(--deep); background: var(--deep); color: white; }
.section-jump-nav > a.nav-quote:hover, .section-jump-nav > a.nav-quote:focus-visible { background: #2b221d; color: white; }
.checklist-menu {
  position: relative;
  flex: 0 0 auto;
}
.checklist-menu summary {
  min-height: 42px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--deep);
  border-radius: 999px;
  background: var(--deep);
  color: white;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
  box-shadow: 0 3px 0 rgba(21,17,15,.22);
  cursor: pointer;
  user-select: none;
}
.checklist-menu summary::-webkit-details-marker { display: none; }
.checklist-menu summary span { color: var(--orange); font-size: 18px; line-height: .8; transition: transform .2s ease; }
.checklist-menu[open] summary span { transform: rotate(180deg); }
.checklist-menu summary:hover, .checklist-menu summary:focus-visible {
  background: white;
  color: var(--deep);
  outline: 2px solid var(--deep);
  outline-offset: 2px;
}
.resources-menu summary { border-color: rgba(21,17,15,.78); background: white; color: var(--deep); }
.resources-menu summary span { color: var(--orange-dark); }
.resources-menu summary:hover, .resources-menu summary:focus-visible { background: var(--deep); color: white; }
.resources-menu[open] summary { background: var(--deep); color: white; }
.checklist-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(340px, calc(100vw - 28px));
  padding: 8px;
  display: grid;
  gap: 5px;
  border: 1px solid #c66c00;
  border-radius: 14px;
  background: white;
  box-shadow: 0 20px 48px rgba(21,17,15,.25);
}
.checklist-menu-panel::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 27px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #c66c00;
  border-left: 1px solid #c66c00;
  background: white;
  transform: rotate(45deg);
}
.checklist-menu-option { padding: 4px; border-radius: 11px; background: #fffaf3; }
.checklist-menu-option + .checklist-menu-option { margin-top: 3px; }
.checklist-menu-primary, .checklist-menu-panel > a {
  min-height: 61px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 9px;
  color: var(--deep);
  text-decoration: none;
}
.checklist-menu-primary:hover, .checklist-menu-primary:focus-visible, .checklist-menu-panel > a:hover, .checklist-menu-panel > a:focus-visible {
  background: var(--orange-soft);
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}
.checklist-menu-pdf {
  min-height: 34px;
  margin: 0 8px 5px;
  padding: 5px 8px;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.checklist-menu-pdf:hover, .checklist-menu-pdf:focus-visible { background: white; outline: 2px solid var(--orange); outline-offset: 0; }
.checklist-menu-panel span, .checklist-menu-panel strong, .checklist-menu-panel small { display: block; }
.checklist-menu-panel strong { font-size: 14px; }
.checklist-menu-panel small { margin-top: 2px; color: var(--ink-soft); font-size: 12px; font-weight: 500; }
.checklist-menu-panel b { flex: none; color: var(--orange-dark); font-size: 11px; letter-spacing: .05em; }
section[id] { scroll-margin-top: 100px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  padding: clamp(58px, 7vw, 96px) clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: clamp(38px, 5vw, 76px);
  background:
    radial-gradient(circle at 90% 4%, rgba(232, 137, 8, 0.25), transparent 29%),
    linear-gradient(138deg, #fff8ec 0%, #fffdf8 59%, #f6d49e 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -155px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(232, 137, 8, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(232,137,8,.05), 0 0 0 96px rgba(232,137,8,.03);
}
.hero-copy, .fee-card { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 15px; color: var(--orange-dark); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-family: "Newsreader", serif;
  font-size: clamp(54px, 6.1vw, 88px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}
h1 em { color: var(--orange-dark); font-weight: 500; }
.hero-lead { max-width: 680px; margin: 0 0 34px; color: #5e5046; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.65; }
.compact-lines { line-height: 1.34; }
.copy-line { display: block; }
.copy-line + .copy-line { margin-top: .08em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--deep); box-shadow: 0 12px 25px rgba(178, 99, 0, .2); }
.button-primary:hover { background: var(--orange-dark); color: white; }
.button-quiet { border-color: rgba(21,17,15,.32); background: transparent; color: var(--deep); }
.button-light { background: var(--orange); color: var(--deep); }
.trust-row { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 14px 25px; color: #5e5046; font-size: 13px; }
.trust-row div { display: flex; align-items: center; gap: 8px; }
.tick { width: 22px; height: 22px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--orange-soft); color: var(--orange-dark); font-weight: 700; }

.fee-card {
  padding: 34px;
  border: 1px solid rgba(232, 137, 8, .55);
  background: rgba(21,17,15,.97);
  color: white;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.fee-topline { display: flex; justify-content: space-between; gap: 14px; color: #dfd1c5; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.price { margin: 20px 0 2px; font-family: "Newsreader", serif; color: var(--orange); font-size: 92px; line-height: .95; letter-spacing: -.05em; }
.price span { vertical-align: top; margin-right: 4px; font: 600 29px/1 "DM Sans", sans-serif; }
.fee-card > p { color: #d9ccc0; }
.fee-divider { height: 1px; margin: 26px 0 20px; background: rgba(255,255,255,.16); }
.fee-item { display: flex; justify-content: space-between; gap: 20px; margin: 13px 0; font-size: 14px; }
.fee-item strong { white-space: nowrap; color: var(--orange); }
.fine-print { margin: 21px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); font-size: 12px; line-height: 1.6; }

.fees-section { padding: clamp(56px, 6.5vw, 84px) clamp(22px, 7vw, 110px); background: var(--deep); color: white; scroll-margin-top: 84px; }
.fees-heading { margin-bottom: 30px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.fees-heading > div { max-width: 700px; }
.fees-heading h2, .process-heading h2, .security-section h2, .aml-heading h2 { margin-bottom: 0; font-family: "Newsreader", serif; font-size: clamp(40px, 4vw, 58px); font-weight: 500; line-height: 1.05; letter-spacing: -.025em; }
.fees-heading > p { max-width: 420px; margin: 0 0 5px; color: #d5c6b9; font-size: 15px; }
.fees-heading > .fees-scope-copy { max-width: none; margin-bottom: 0; line-height: 1.18; }
.fees-scope-copy .copy-line + .copy-line { margin-top: 0; }
.fee-breakdown { display: grid; grid-template-columns: 1.05fr .95fr; gap: 16px; }
.included-card, .cost-card { padding: clamp(27px, 4vw, 42px); border: 1px solid rgba(255,255,255,.17); }
.included-card { border-color: rgba(232,137,8,.67); background: linear-gradient(142deg, rgba(232,137,8,.14), rgba(255,255,255,.025)); }
.cost-card { background: rgba(255,255,255,.04); }
.fee-label { display: block; color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.fee-value { margin: 15px 0 24px; display: flex; align-items: baseline; gap: 13px; }
.fee-value strong { color: white; font-family: "Newsreader", serif; font-size: clamp(55px, 6vw, 76px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.fee-value span { color: #d5c6b9; font-size: 14px; }
.plain-list { margin: 0; padding: 0; list-style: none; }
.plain-list li { position: relative; padding-left: 23px; color: inherit; }
.plain-list li + li { margin-top: 14px; }
.plain-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 700; }
.included-card .plain-list { color: #e4d8cd; font-size: 14px; }
.cost-list { margin: 20px 0 0; }
.cost-list > div { padding: 15px 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(140px, .65fr); gap: 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.cost-list > div:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.cost-list dt, .cost-list dd { margin: 0; }
.cost-list dt { color: #e4d8cd; font-size: 14px; }
.cost-list dd { color: white; font-size: 13px; font-weight: 700; text-align: right; }
.scope-note { margin: 20px 0 0; color: #c9b9ab; font-size: 13px; }
.scope-note strong { color: white; }

.reviews-section { padding: clamp(56px, 6vw, 80px) clamp(22px, 7vw, 110px); background: var(--cream); scroll-margin-top: 84px; }
.reviews-heading { margin-bottom: 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.reviews-heading h2 { margin-bottom: 0; font-family: "Newsreader", serif; font-size: clamp(40px, 4vw, 58px); font-weight: 500; line-height: 1.05; letter-spacing: -.025em; }
.reviews-heading .inline-link { color: var(--orange-dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { min-height: 280px; padding: clamp(25px, 3vw, 34px); display: flex; flex-direction: column; border: 1px solid var(--line); background: white; box-shadow: 0 16px 42px rgba(21,17,15,.07); }
.review-stars { color: var(--orange-dark); font-size: 18px; letter-spacing: .13em; }
.review-card blockquote { margin: 22px 0 28px; color: var(--ink); font-family: "Newsreader", serif; font-size: 21px; line-height: 1.45; }
.review-card p { margin: auto 0 0; }
.review-card p strong, .review-card p span { display: block; }
.review-card p strong { font-size: 14px; }
.review-card p span { margin-top: 2px; color: var(--ink-soft); font-size: 12px; }

.quote-section { padding: clamp(58px, 7vw, 88px) clamp(22px, 7vw, 110px); background: var(--paper); }
.section-intro { max-width: 680px; margin-bottom: 32px; }
.section-intro h2, .confidence-heading h2 { margin-bottom: 15px; font-family: "Newsreader", serif; font-size: clamp(40px, 4vw, 58px); font-weight: 500; line-height: 1.05; letter-spacing: -.025em; }
.section-intro > p:last-child { color: var(--ink-soft); font-size: 17px; }
.quote-shell { max-width: 1050px; border: 1px solid var(--line); background: white; box-shadow: 0 20px 65px rgba(21, 17, 15, .09); }
.progress-wrap { padding: 21px 30px 0; }
.progress-meta { margin-bottom: 9px; display: flex; justify-content: space-between; color: var(--ink-soft); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.progress-track { height: 4px; overflow: hidden; border-radius: 9px; background: #efe4d7; }
.progress-track span { display: block; width: 33.33%; height: 100%; background: var(--orange); transition: width .35s ease; }
.form-step { display: none; min-height: 500px; padding: clamp(32px, 5vw, 58px); }
.form-step.active { display: block; animation: appear .35s ease; }
@keyframes appear { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
legend { padding: 0; font-family: "Newsreader", serif; font-size: clamp(32px, 3.2vw, 44px); font-weight: 500; line-height: 1.1; }
.field-help { margin: 10px 0 30px; color: var(--ink-soft); }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.choice-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 1.5px solid #df8a16;
  border-radius: 12px;
  background: linear-gradient(145deg, #fffdf8 0%, #fff1da 100%);
  box-shadow: 0 9px 22px rgba(169,88,0,.1);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.choice-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--orange);
}
.choice-card::after {
  content: "✓";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--deep);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: scale(.72);
  transition: opacity .2s ease, transform .2s ease;
}
.choice-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-dark);
  box-shadow: 0 15px 30px rgba(169,88,0,.18);
}
.choice-card:focus-within {
  outline: 3px solid rgba(232,137,8,.35);
  outline-offset: 3px;
}
.choice-card:has(input:checked) {
  border: 2px solid var(--orange);
  padding: 27.5px;
  background: linear-gradient(145deg, #211b17 0%, var(--deep) 72%);
  color: white;
  box-shadow: 0 17px 35px rgba(21,17,15,.24), inset 0 0 0 1px rgba(255,255,255,.08);
}
.choice-card:has(input:checked)::after { opacity: 1; transform: scale(1); }
.choice-card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.choice-icon {
  position: absolute;
  top: 19px;
  right: 21px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232,137,8,.45);
  border-radius: 50%;
  background: var(--deep);
  color: var(--orange);
  font-family: "DM Sans", sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 7px 16px rgba(21,17,15,.15);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.choice-card:hover .choice-icon { transform: rotate(-4deg) scale(1.04); }
.choice-card:has(input:checked) .choice-icon { border-color: white; background: var(--orange); color: var(--deep); }
.choice-card strong { position: relative; font-family: "Newsreader", serif; font-size: 28px; line-height: 1.1; }
.choice-card small { position: relative; margin-top: 7px; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }
.choice-card:has(input:checked) small { color: #e2d4c8; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-grid label { display: flex; flex-direction: column; gap: 8px; color: var(--ink); font-size: 13px; font-weight: 700; }
.form-grid label small { color: var(--ink-soft); font-weight: 400; }
.full-width { grid-column: 1 / -1; }
input, select, textarea { width: 100%; padding: 13px 14px; border: 1px solid #d8c9b7; border-radius: 3px; outline: none; background: #fff; color: var(--ink); }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,137,8,.14); }
textarea { resize: vertical; }
.eligibility-box { margin-top: 24px; padding: 20px; border: 1px solid #efc47f; background: #fff8ed; }
.eligibility-box p { margin: 0 0 13px; }
.check-row { display: flex; align-items: flex-start; gap: 11px; margin: 11px 0; font-size: 14px; }
.check-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--orange); }
.buyer-resources[hidden] { display: none; }
.buyer-resources { margin-top: 28px; padding: clamp(22px, 3vw, 30px); border: 1px solid var(--line); background: #fbf7f1; }
.buyer-resources-heading { margin-bottom: 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 26px; }
.buyer-resources-heading .eyebrow { margin-bottom: 7px; }
.buyer-resources-heading h3 { margin: 0; font-family: "Newsreader", serif; font-size: 30px; font-weight: 500; line-height: 1.1; }
.resource-heading-side { max-width: 390px; }
.resource-heading-side p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.checklist-download { min-height: 44px; margin-top: 12px; padding: 11px 14px; display: inline-flex; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid #8d4600; background: linear-gradient(135deg, #ffad25, var(--orange)); color: var(--deep); font-size: 13px; font-weight: 700; text-decoration: none; box-shadow: 0 7px 16px rgba(169,88,0,.24); transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease; }
.checklist-download:hover, .checklist-download:focus-visible { background: var(--deep); color: white; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(21,17,15,.22); outline: 2px solid var(--orange); outline-offset: 2px; }
.checklist-download span { font-size: 10px; letter-spacing: .08em; }
.resource-checklist-actions { margin-top: 12px; display: grid; gap: 8px; }
.resource-checklist-actions .checklist-download { width: 100%; margin-top: 0; }
.checklist-pdf-link { color: var(--orange-dark); font-size: 12px; font-weight: 700; text-underline-offset: 3px; }
.checklist-pdf-link:hover, .checklist-pdf-link:focus-visible { color: var(--deep); outline: 2px solid var(--orange); outline-offset: 3px; }
.guidance-list { margin-bottom: 27px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid #dfd1c0; background: #dfd1c0; }
.guidance-list article { min-height: 190px; padding: 20px; display: flex; align-items: flex-start; gap: 14px; background: white; }
.guidance-list article > span { flex: none; color: var(--orange-dark); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.guidance-list strong { display: block; margin-bottom: 6px; font-family: "Newsreader", serif; font-size: 20px; font-weight: 600; }
.guidance-list p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.guidance-list a, .seller-alert a { display: inline-block; margin-top: 10px; color: var(--orange-dark); font-size: 12px; font-weight: 700; text-underline-offset: 3px; }
.resource-subheading { margin: 0 0 14px; font-family: "Newsreader", serif; font-size: 24px; font-weight: 600; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.resource-card { min-height: 190px; padding: 18px; display: flex; flex-direction: column; border: 1px solid #dfd1c0; background: white; color: var(--ink); text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.resource-card:hover, .resource-card:focus-visible { transform: translateY(-2px); border-color: var(--orange); box-shadow: 0 10px 24px rgba(21,17,15,.08); outline: none; }
.resource-card.featured { border-color: var(--orange); background: #fff8eb; }
.resource-source { margin-bottom: 14px; color: var(--orange-dark); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.resource-card strong { margin-bottom: 7px; font-family: "Newsreader", serif; font-size: 21px; font-weight: 600; line-height: 1.15; }
.resource-card > span:not(.resource-source):not(.resource-link) { color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.resource-link { margin-top: auto; padding-top: 18px; color: var(--orange-dark); font-size: 12px; font-weight: 700; }
.resource-note { margin: 16px 0 0; color: var(--ink-soft); font-size: 11px; }
.title-insurance-note { margin: 22px 0 26px; padding: 22px; border-left: 4px solid var(--orange); background: #fff0dc; }
.title-insurance-note h4 { margin: 0; font-family: "Newsreader", serif; font-size: 24px; font-weight: 600; }
.title-insurance-note h5 { margin: 20px 0 10px; font-family: "Newsreader", serif; font-size: 20px; font-weight: 600; }
.title-insurance-note p { margin: 9px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.title-insurance-note strong { color: var(--ink); }
.title-risk-list { margin: 0; padding: 16px 18px 16px 36px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 28px; border: 1px solid #e6cba8; background: rgba(255,255,255,.58); }
.title-risk-list li { color: var(--ink-soft); font-size: 16px; line-height: 1.5; }
.seller-checklist { margin-bottom: 22px; padding: 23px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; border: 1px solid #dfd1c0; background: white; color: var(--ink-soft); font-size: 13px; }
.linked-transaction-checklist { margin: 0 0 22px; padding: 22px; display: grid; grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr); gap: 30px; border: 1px solid var(--orange); background: #fff8eb; }
.linked-transaction-heading .eyebrow { margin-bottom: 7px; }
.linked-transaction-heading h4 { margin: 0; font-family: "Newsreader", serif; font-size: 24px; font-weight: 600; line-height: 1.15; }
.linked-transaction-heading > p:last-child { margin: 9px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }
.linked-transaction-checklist .plain-list { color: var(--ink-soft); font-size: 13px; }
.final-inspection-panel { margin: 0 0 26px; padding: 24px; border: 1px solid #2f2925; background: var(--deep); color: white; }
.final-inspection-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 26px; }
.final-inspection-heading > div { max-width: 660px; }
.final-inspection-heading .eyebrow { margin-bottom: 7px; color: var(--orange); }
.final-inspection-heading h4 { margin: 0; font-family: "Newsreader", serif; font-size: 28px; font-weight: 600; line-height: 1.12; }
.final-inspection-heading p:last-child { margin: 10px 0 0; color: #d9ccc0; font-size: 14px; line-height: 1.6; }
.final-inspection-download { width: min(100%, 315px); flex: none; }
.final-inspection-panel .checklist-download { width: 100%; flex: none; }
.final-inspection-panel .checklist-pdf-link-dark { margin-top: 10px; display: inline-block; color: var(--orange); }
.final-inspection-panel .checklist-pdf-link-dark:hover, .final-inspection-panel .checklist-pdf-link-dark:focus-visible { color: white; }
.final-inspection-download p { margin: 9px 0 0; color: #d9ccc0; font-size: 12px; line-height: 1.45; }
.final-inspection-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.18); }
.final-inspection-grid article { min-height: 175px; padding: 18px; background: #1e1916; }
.final-inspection-grid article > span { display: block; margin-bottom: 27px; color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.final-inspection-grid strong { display: block; font-family: "Newsreader", serif; font-size: 20px; font-weight: 600; }
.final-inspection-grid p { margin: 8px 0 0; color: #d9ccc0; font-size: 14px; line-height: 1.55; }
.final-inspection-alert { margin-top: 18px; padding: 16px 18px; border-left: 4px solid var(--orange); background: #fff0dc; color: var(--ink); }
.final-inspection-alert strong { display: block; font-family: "Newsreader", serif; font-size: 20px; font-weight: 600; }
.final-inspection-alert p { margin: 6px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.final-inspection-note { margin: 15px 0 0; color: #d9ccc0; font-size: 14px; line-height: 1.55; }
.final-inspection-note a { color: var(--orange); font-weight: 700; text-underline-offset: 3px; }
.seller-alert { margin-bottom: 26px; padding: 22px; border-left: 4px solid var(--orange); background: #fff0dc; }
.seller-alert > strong { display: block; font-family: "Newsreader", serif; font-size: 22px; font-weight: 600; }
.seller-alert p { margin: 8px 0 0; color: var(--ink-soft); font-size: 13px; }
.resource-heading-side .resource-compact-copy,
.linked-transaction-heading .resource-compact-copy,
.final-inspection-heading .resource-compact-copy,
.final-inspection-alert .resource-compact-copy,
.final-inspection-note.resource-compact-copy,
.title-insurance-note .resource-compact-copy,
.seller-alert .resource-compact-copy { line-height: 1.22; }
.resource-compact-copy .copy-line + .copy-line { margin-top: 0; }
.seller-grid { grid-template-columns: repeat(3, 1fr); }
.form-error { min-height: 23px; margin-top: 14px; color: var(--error); font-size: 13px; font-weight: 600; }
.step-actions { margin-top: 31px; display: flex; justify-content: space-between; gap: 12px; }
.step-actions.end { justify-content: flex-end; }
.result-step { text-align: center; }
.result-icon { width: 58px; height: 58px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-soft); color: var(--orange-dark); font-size: 28px; }
.result-step h3 { margin-bottom: 12px; font-family: "Newsreader", serif; font-size: 42px; font-weight: 500; }
.result-summary { max-width: 620px; margin: 0 auto 24px; color: var(--ink-soft); }
.result-fee { max-width: 630px; margin: 0 auto 24px; border-block: 1px solid var(--line); }
.result-fee div { padding: 15px 5px; display: flex; justify-content: space-between; gap: 22px; text-align: left; }
.result-fee div + div { border-top: 1px solid var(--line); }
.result-fee strong { color: var(--orange-dark); }
.privacy-note { max-width: 660px; margin: 0 auto 22px; color: var(--ink-soft); font-size: 12px; }
.result-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.collection-notice { margin: 18px 0 0; padding: 14px 16px; border-left: 3px solid var(--orange); background: var(--orange-soft); color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.collection-notice strong { color: var(--ink); }
.collection-notice a, .enquiry-fallback a { color: var(--orange-dark); font-weight: 700; text-underline-offset: 3px; }
.enquiry-fallback { max-width: 660px; margin: 15px auto 0; color: var(--ink-soft); font-size: 12px; }
.copy-status { min-height: 19px; margin: 7px auto 0; color: var(--orange-dark); font-size: 12px; font-weight: 700; }
.text-button { margin-top: 19px; border: 0; background: transparent; color: var(--orange-dark); cursor: pointer; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.process-section { padding: clamp(58px, 7vw, 88px) clamp(22px, 7vw, 110px); background: var(--cream); scroll-margin-top: 84px; }
.process-heading { max-width: 760px; }
.process-heading > p:last-child { max-width: 670px; margin: 18px 0 0; color: var(--ink-soft); font-size: 16px; }
.timeline { margin: 34px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(21,17,15,.17); list-style: none; }
.timeline li { min-height: 250px; padding: 27px; background: var(--cream); }
.timeline li > span { display: block; color: var(--orange-dark); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.timeline strong { display: block; margin-top: 46px; font-family: "Newsreader", serif; font-size: 23px; font-weight: 600; line-height: 1.1; }
.timeline p { margin: 11px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }

.security-section { padding: clamp(40px, 5vw, 60px) clamp(22px, 7vw, 110px); display: grid; grid-template-columns: auto minmax(0, 900px); justify-content: center; gap: clamp(25px, 4vw, 50px); background: var(--deep-2); color: white; }
.security-symbol { width: 76px; height: 76px; display: grid; place-items: center; border: 2px solid var(--orange); border-radius: 50%; color: var(--orange); font-family: "Newsreader", serif; font-size: 48px; line-height: 1; }
.security-section h2 { font-size: clamp(35px, 4vw, 52px); }
.security-section p { max-width: 890px; color: #d9ccc0; font-size: 15px; }
.security-section .payment-safety-copy { line-height: 1.22; }
.payment-safety-copy .copy-line + .copy-line { margin-top: 0; }
.security-section p strong { color: white; }
.security-section a, .inline-link { color: var(--orange); font-size: 14px; font-weight: 700; text-underline-offset: 4px; }

.aml-section { padding: clamp(58px, 7vw, 88px) clamp(22px, 7vw, 110px); background: var(--paper); scroll-margin-top: 84px; }
.aml-heading { max-width: 730px; margin-bottom: 30px; }
.aml-content { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 16px; }
.aml-copy { padding: clamp(27px, 4vw, 42px); border: 1px solid var(--line); background: white; }
.aml-copy p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
.aml-copy p + p { margin-top: 15px; }
.aml-copy .inline-link { display: inline-block; margin-top: 24px; color: var(--orange-dark); }
.aml-cost { padding: clamp(27px, 4vw, 42px); border: 1px solid rgba(232,137,8,.55); background: var(--deep); color: white; }
.aml-cost > strong { display: block; margin-top: 24px; color: var(--orange); font-family: "Newsreader", serif; font-size: 34px; font-weight: 500; line-height: 1.08; }
.aml-cost p { margin: 18px 0 0; color: #d9ccc0; font-size: 14px; line-height: 1.7; }

.confidence-section { padding: clamp(58px, 7vw, 88px) clamp(22px, 7vw, 110px); background: var(--cream); }
.confidence-heading { max-width: 680px; margin-bottom: 34px; }
.confidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(21,17,15,.16); }
.confidence-grid article { min-height: 280px; padding: 33px; background: var(--cream); }
.number { color: var(--orange-dark); font: 600 13px/1 "DM Sans", sans-serif; letter-spacing: .12em; }
.confidence-grid h3 { margin: 42px 0 12px; font-family: "Newsreader", serif; font-size: 28px; font-weight: 500; }
.confidence-grid p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.contact-strip { margin-top: 38px; padding: 28px 30px; display: flex; align-items: center; justify-content: space-between; gap: 28px; background: var(--deep); color: white; }
.contact-strip strong, .contact-strip span { display: block; }
.contact-strip strong { font-family: "Newsreader", serif; font-size: 25px; font-weight: 500; }
.contact-strip span { margin-top: 4px; color: #dac9ba; font-size: 13px; }
.contact-actions { display: flex; align-items: center; gap: 20px; }
.contact-links { display: grid; gap: 4px; }
.contact-links a { color: white; font-size: 14px; text-underline-offset: 4px; }
.contact-links span { margin: 0; font-size: 12px; }
.contact-links span a { font-size: inherit; }
footer { min-height: 90px; padding: 24px clamp(22px, 7vw, 110px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 15px; background: #0b0908; color: #cbb9aa; font-size: 11px; }
.footer-copyright { display: inline-flex !important; flex: 0 0 auto; white-space: nowrap !important; word-break: keep-all; }
.footer-links { display: inline-flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: white; text-underline-offset: 3px; }

.legal-page { min-height: calc(100vh - 176px); padding: clamp(48px, 7vw, 86px) clamp(20px, 7vw, 110px); background: linear-gradient(145deg, #fff8ec, var(--paper) 52%, #f7dfbb); }
.legal-shell { width: min(940px, 100%); margin: 0 auto; }
.legal-intro { margin-bottom: 30px; }
.legal-intro h1 { max-width: 780px; margin-bottom: 18px; font-size: clamp(46px, 6vw, 72px); }
.legal-intro p { max-width: 760px; margin: 0; color: var(--ink-soft); font-size: 17px; }
.legal-card { padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); background: rgba(255,255,255,.94); box-shadow: 0 18px 48px rgba(21,17,15,.09); }
.legal-card section + section { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
.legal-card h2 { margin-bottom: 10px; font-family: "Newsreader", serif; font-size: 30px; font-weight: 600; line-height: 1.12; }
.legal-card p, .legal-card li { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.legal-card p { margin: 8px 0 0; }
.legal-card ul { margin: 10px 0 0; padding-left: 22px; }
.legal-card a { color: var(--orange-dark); font-weight: 700; text-underline-offset: 3px; }
.legal-meta { margin-top: 28px; color: var(--ink-soft); font-size: 12px; }
.legal-back { margin-bottom: 24px; }

@media (min-width: 901px) {
  .fees-scope-copy .copy-line { white-space: nowrap; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .fees-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 900px) {
  .section-jump-nav { justify-content: center; }
  .section-jump-nav > a { display: inline-flex; }
  .hero { grid-template-columns: 1fr; }
  .fee-card { max-width: 580px; }
  .fees-heading { align-items: flex-start; flex-direction: column; gap: 15px; }
  .reviews-heading { align-items: flex-start; flex-direction: column; gap: 15px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .fee-breakdown, .aml-content { grid-template-columns: 1fr; }
  .confidence-grid { grid-template-columns: 1fr; }
  .confidence-grid article { min-height: 0; }
  .contact-strip { align-items: flex-start; flex-direction: column; }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .final-inspection-heading { align-items: flex-start; flex-direction: column; }
  .final-inspection-download { width: 100%; max-width: 420px; }
  .final-inspection-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .site-header { min-height: 68px; padding: 7px 14px; gap: 10px; }
  .brand { gap: 7px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand strong { font-size: 16px; white-space: nowrap; }
  .brand small { display: none; }
  .site-header nav { gap: 8px; }
  .site-header .nav-contact { padding: 8px 10px; font-size: 12px; }
  .nav-phone { padding: 8px 9px; font-size: 11px; white-space: nowrap; }
  .section-jump-wrap { min-height: 0; }
  .section-jump-nav {
    min-height: 0;
    padding: 8px 14px 9px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
  }
  .checklist-menu { width: 100%; min-width: 0; }
  .checklist-menu summary, .section-jump-nav > a {
    width: 100%;
    min-height: 42px;
    padding: 9px 10px;
    font-size: 13px;
  }
  .checklist-menu-panel {
    position: fixed;
    top: 170px;
    left: 14px;
    width: calc(100vw - 28px);
    max-height: calc(100vh - 186px);
    overflow-y: auto;
  }
  .checklist-menu-panel::before { display: none; }
  .hero { min-height: 0; padding: 44px 20px 50px; gap: 30px; }
  h1 { font-size: 46px; }
  .hero-lead { margin-bottom: 25px; font-size: 17px; line-height: 1.55; }
  .hero-lead.compact-lines { line-height: 1.34; }
  .trust-row { margin-top: 30px; }
  .price { font-size: 70px; }
  .fee-card { padding: 23px; }
  .fees-section, .reviews-section, .quote-section, .process-section, .aml-section, .confidence-section { padding-block: 48px; }
  .security-section { padding-block: 40px; }
  .quote-section, .confidence-section { padding-inline: 16px; }
  .fees-heading, .reviews-heading, .section-intro, .aml-heading, .confidence-heading { margin-bottom: 24px; }
  .fees-heading h2, .reviews-heading h2, .process-heading h2, .security-section h2, .aml-heading h2, .section-intro h2, .confidence-heading h2 { font-size: 36px; }
  .review-card { min-height: 0; padding: 22px; }
  .review-card blockquote { margin: 17px 0 22px; font-size: 20px; }
  .quote-shell { margin-inline: -2px; }
  .progress-wrap { padding: 18px 18px 0; }
  .form-step { min-height: 0; padding: 26px 18px; }
  .choice-grid, .form-grid { grid-template-columns: 1fr; }
  .choice-card { min-height: 142px; padding: 21px; }
  .choice-card:has(input:checked) { padding: 20.5px; }
  .choice-icon { top: 16px; right: 17px; width: 48px; height: 48px; font-size: 25px; }
  .choice-card::after { top: 15px; left: 15px; }
  .full-width { grid-column: auto; }
  .step-actions .button { min-width: 0; }
  .result-fee div { font-size: 13px; }
  .buyer-resources { margin-top: 22px; padding: 18px; }
  .guidance-list { margin-bottom: 22px; }
  .guidance-list article { min-height: 0; padding: 18px; }
  .title-insurance-note, .seller-alert, .linked-transaction-checklist { padding: 18px; }
  .contact-strip { margin-top: 30px; padding: 22px 18px; }
  .contact-actions { width: 100%; align-items: flex-start; flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .buyer-resources-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .resource-heading-side, .checklist-download { width: 100%; max-width: none; }
  .guidance-list, .resource-grid, .seller-checklist, .linked-transaction-checklist, .final-inspection-grid, .timeline, .title-risk-list { grid-template-columns: 1fr; }
  .linked-transaction-checklist { gap: 17px; }
  .final-inspection-panel { padding: 20px; }
  .final-inspection-grid article { min-height: 0; }
  .final-inspection-grid article > span { margin-bottom: 16px; }
  .resource-card { min-height: 0; }
  .cost-list > div { grid-template-columns: 1fr; gap: 5px; }
  .cost-list dd { text-align: left; }
  .timeline li { min-height: 0; }
  .timeline { margin-top: 28px; }
  .timeline strong { margin-top: 20px; }
  .security-section { grid-template-columns: 1fr; }
  .security-symbol { width: 58px; height: 58px; font-size: 38px; }
  footer { min-height: 0; padding-block: 20px; }
}
@media (max-width: 480px) {
  .brand > span:last-child { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
