:root {
  --yellow: #ffe600;
  --ink: #111111;
  --paper: #ffffff;
  --white: #ffffff;
  --muted: #706f68;
  --line: rgba(17, 17, 17, 0.18);
  --radius: 1.25rem;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  border-top: 0.75rem solid var(--yellow);
  background: var(--paper);
  line-height: 1.5;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 50;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.hero,
.strategy,
.about,
footer {
  width: min(1240px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

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

.rw-logo-frame {
  width: 4.25rem;
  height: 4.25rem;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--yellow);
}

.rw-logo-frame.small {
  width: 3.3rem;
  height: 3.3rem;
}

.rw-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  transform: scale(1.34);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.brand-copy small {
  margin-top: 0.25rem;
  color: var(--muted);
}

.header-call {
  display: grid;
  text-align: right;
  text-decoration: none;
  line-height: 1.2;
}

.header-call span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.header-call strong {
  margin-top: 0.2rem;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background:
    radial-gradient(circle at 8% 30%, rgba(255, 230, 0, 0.18), transparent 21rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.eyebrow span {
  width: 1.75rem;
  height: 0.23rem;
  background: var(--yellow);
  border: 1px solid var(--ink);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 0.6rem;
  font-size: clamp(3rem, 6.7vw, 6.6rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.hero-punch {
  max-width: 690px;
  margin-bottom: 2rem;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 760;
}

.hero-punch em {
  position: relative;
  z-index: 0;
  font-style: normal;
}

.hero-punch em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.02em;
  right: -0.06em;
  bottom: 0.08em;
  height: 0.36em;
  background: var(--yellow);
  transform: rotate(-1.2deg);
}

.hero-intro {
  max-width: 650px;
  color: #3f3e39;
  font-size: 1.08rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.hero-proof span {
  padding: 0.52rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: #4b4a45;
  font-size: 0.78rem;
  font-weight: 700;
}

.plan-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 var(--ink);
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.75rem;
  background: var(--yellow);
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.plan-card h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.plan-card > p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

label,
legend {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

label {
  display: grid;
  gap: 0.42rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  border: 1px solid #a5a39b;
  border-radius: 0.55rem;
  padding: 0.84rem 0.9rem;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

input::placeholder {
  color: #99978f;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(245, 237, 0, 0.55);
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

fieldset {
  margin: 0.2rem 0 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 0.55rem;
}

.timing-grid {
  display: grid;
  grid-template-columns: 0.75fr 0.95fr 1.2fr;
  gap: 0.45rem;
}

.timing-grid label {
  display: block;
}

.timing-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.timing-grid span {
  display: grid;
  place-items: center;
  min-height: 2.55rem;
  padding: 0.35rem;
  border: 1px solid #aaa89f;
  border-radius: 0.5rem;
  color: #66645f;
  cursor: pointer;
  font-size: 0.72rem;
  text-align: center;
}

.timing-grid input:checked + span,
.timing-grid input:focus-visible + span {
  background: var(--yellow);
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.65rem;
  padding: 0.8rem 1rem 0.8rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 0.55rem;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-button svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.15rem;
  margin: -0.25rem 0 0;
  color: #a12a20;
  font-size: 0.76rem;
  font-weight: 750;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status a {
  color: inherit;
}

.privacy-note {
  margin: -0.25rem 0 0;
  color: var(--muted);
  font-size: 0.71rem;
  text-align: center;
}

.trust-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  margin-top: clamp(1rem, 3vw, 2rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.trust-lead,
.trust-item {
  min-height: 8.25rem;
  padding: 1.15rem 1.25rem;
}

.trust-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--yellow);
}

.trust-lead span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trust-lead strong {
  margin-top: 0.25rem;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-left: 1px solid var(--line);
}

.trust-item > span:last-child {
  display: grid;
}

.trust-item strong {
  font-size: 0.86rem;
  line-height: 1.15;
}

.trust-item small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.trust-mark {
  min-width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
}

.trust-link {
  text-decoration: none;
  transition: background 160ms ease;
}

.trust-link:hover,
.trust-link:focus-visible {
  background: #f7f5ed;
}

.trust-link:hover .trust-mark,
.trust-link:focus-visible .trust-mark {
  background: var(--yellow);
}

.strategy {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(5rem, 9vw, 8rem) max(1.5rem, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.strategy::after {
  content: "SELL SMARTER";
  position: absolute;
  top: 0.7rem;
  right: -1rem;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 2rem;
  align-items: start;
}

.section-heading h2,
.about-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5.2vw, 5.3rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
}

.strategy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.strategy-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.strategy-grid article:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.step-number {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.strategy-grid h3 {
  margin-bottom: 0.65rem;
  font-size: 1.55rem;
}

.strategy-grid p {
  max-width: 300px;
  color: #b9b8b2;
  font-size: 0.93rem;
}

.strategy-grid strong {
  color: var(--yellow);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.about {
  padding: clamp(5rem, 9vw, 8rem) 0 3rem;
}

.quote-block {
  margin-bottom: clamp(4rem, 10vw, 8rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  font-size: clamp(2.6rem, 6.4vw, 6.4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.quote-block p {
  margin-bottom: 0;
}

.quote-block p:last-child {
  width: fit-content;
  background: linear-gradient(transparent 58%, var(--yellow) 58% 94%, transparent 94%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: stretch;
}

.about-mark {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  overflow: hidden;
}

.profile-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.about-mark::after {
  content: "PROTECTING THE REPUTATION OF YOUR PROPERTY";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1rem;
  padding: 0.8rem 0.6rem;
  border-top: 1px solid var(--ink);
  background: var(--yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}

.about-copy {
  align-self: center;
}

.about-copy > p:not(.eyebrow):not(.areas) {
  max-width: 670px;
  margin-top: 1.75rem;
  color: #3f3e39;
  font-size: 1.05rem;
}

.areas {
  max-width: 670px;
  margin: 1.5rem 0 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about-actions .primary-button {
  min-width: 245px;
}

.primary-button.dark {
  background: var(--ink);
  color: var(--white);
}

.primary-button.dark:hover,
.primary-button.dark:focus-visible {
  box-shadow: 5px 5px 0 var(--yellow);
}

.text-link {
  font-weight: 800;
  text-underline-offset: 0.25rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: end;
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand > span:last-child {
  display: grid;
}

footer strong {
  color: var(--ink);
  font-size: 0.9rem;
}

footer small {
  margin-top: 0.15rem;
  color: var(--muted);
}

footer p {
  margin-bottom: 0;
}

.footer-link {
  color: var(--ink);
  font-weight: 850;
  text-underline-offset: 0.2rem;
}

/* Buyer brief */
.buyer-page {
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.buyer-shell {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(5rem, 9vw, 8rem);
}

.buyer-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.buyer-intro h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.buyer-lede {
  max-width: 480px;
  margin-bottom: 0;
  padding-left: 1.25rem;
  border-left: 5px solid var(--yellow);
  color: #3f3e39;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.buyer-form-card {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
}

.buyer-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--ink);
  background: #f3f1e9;
}

.progress-step {
  position: relative;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.progress-step:last-child {
  border-right: 0;
}

.progress-step.active {
  background: var(--yellow);
  color: var(--ink);
}

.buyer-form {
  margin: 0;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.form-step {
  display: none;
}

.form-step.active {
  display: grid;
  gap: 1.15rem;
  animation: step-in 200ms ease-out;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-heading {
  margin-bottom: 0.5rem;
}

.step-heading span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step-heading h2 {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.step-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.field-grid .wide {
  grid-column: 1 / -1;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.choice-grid label,
.choice-row label {
  display: block;
}

.choice-grid input,
.choice-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span,
.choice-row span {
  display: grid;
  min-height: 3rem;
  place-items: center;
  padding: 0.55rem 0.7rem;
  border: 1px solid #aaa89f;
  border-radius: 0.55rem;
  color: #575650;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 750;
  text-align: center;
}

.choice-grid input:checked + span,
.choice-grid input:focus-visible + span,
.choice-row input:checked + span,
.choice-row input:focus-visible + span {
  border-color: var(--ink);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.question-block {
  display: grid;
  gap: 0.55rem;
}

.question-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.question-help {
  margin: -0.25rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.motivation-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
}

.motivation-scale label {
  display: block;
}

.motivation-scale input {
  position: absolute;
  opacity: 0;
}

.motivation-scale span {
  display: grid;
  min-height: 3rem;
  place-items: center;
  border: 1px solid #aaa89f;
  border-radius: 0.55rem;
  cursor: pointer;
  font-weight: 900;
}

.motivation-scale input:checked + span,
.motivation-scale input:focus-visible + span {
  border-color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.7rem;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.form-actions .primary-button {
  min-width: 210px;
}

.secondary-button {
  min-height: 3.65rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 0.55rem;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.buyer-note {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

.buyer-page footer {
  background: rgba(255, 255, 255, 0.9);
}

dialog {
  width: min(540px, calc(100% - 2rem));
  padding: 2rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 var(--ink);
}

dialog::backdrop {
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.dialog-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-size: 1.35rem;
  font-weight: 900;
}

dialog h2 {
  max-width: 400px;
  margin-bottom: 0.8rem;
  font-size: 2.6rem;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.dialog-copy {
  color: var(--muted);
}

.summary {
  margin: 1.25rem 0;
  padding: 1rem;
  border-left: 4px solid var(--yellow);
  background: #f4f2eb;
  font-size: 0.86rem;
  white-space: pre-line;
}

.copy-button {
  width: 100%;
  margin-top: 0.7rem;
  padding: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0 6rem;
  }

  .plan-card {
    max-width: 620px;
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .strategy-grid article,
  .strategy-grid article:first-child {
    min-height: 230px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .about-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 2.5rem;
  }

  .about-mark {
    min-height: 360px;
  }

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

  footer p:last-child {
    grid-column: 1 / -1;
  }

  .buyer-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .about,
  footer {
    width: min(100% - 2rem, 1240px);
  }

  .brand-copy small,
  .header-call span {
    display: none;
  }

  .brand-copy strong {
    max-width: 9rem;
  }

  .header-call strong {
    font-size: 0.83rem;
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    font-size: clamp(3.35rem, 15vw, 5.4rem);
  }

  .hero-punch {
    font-size: 2.35rem;
  }

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

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

  .trust-lead,
  .trust-item {
    min-height: auto;
    padding: 1rem;
  }

  .trust-item,
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .strategy {
    padding-inline: 1rem;
  }

  .strategy-grid article {
    padding-inline: 0.75rem;
  }

  .about-mark {
    min-height: 275px;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-actions .primary-button {
    min-width: 0;
  }

  .text-link {
    text-align: center;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  footer p:last-child {
    grid-column: auto;
  }

  .buyer-shell {
    width: min(100% - 2rem, 1120px);
    padding-top: 2.5rem;
  }

  .buyer-intro h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .buyer-progress {
    grid-template-columns: 1fr;
  }

  .progress-step {
    display: none;
    border-right: 0;
  }

  .progress-step.active {
    display: block;
  }

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

  .field-grid .wide {
    grid-column: auto;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .form-actions .primary-button,
  .secondary-button {
    width: 100%;
  }

  dialog {
    padding: 1.5rem;
    box-shadow: 7px 7px 0 var(--ink);
  }

  dialog h2 {
    font-size: 2.1rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
