@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/spacegrotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --gold: #f5a700;
  --gold-light: #ffc24d;
  --gold-soft: #fff5d8;
  --gold-deep: #8a5d00;
  --ink: #101318;
  --ink-2: #252a33;
  --muted: #626b7a;
  --muted-light: #8b94a2;
  --paper: #ffffff;
  --canvas: #f7f7f4;
  --canvas-2: #f1f2f3;
  --line: #e1e4e8;
  --line-strong: #cfd4db;
  --dark: #0c0e11;
  --dark-2: #15181d;
  --success: #15803d;
  --danger: #b42318;
  --shadow-sm: 0 8px 22px rgba(21, 26, 34, .07);
  --shadow-lg: 0 22px 60px rgba(18, 22, 29, .12);
  --radius-sm: 11px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-prototype-proof .prototype-only {
  display: none !important;
}

body.no-prototype-proof .trust-bar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

img {
  height: auto;
}

[hidden] {
  display: none !important;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 6vw, 5.1rem);
  font-weight: 650;
  line-height: .98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
  font-weight: 650;
  line-height: 1.04;
}

h3 {
  font-weight: 650;
  line-height: 1.15;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: 96px;
}

.section-pad-sm {
  padding-block: 72px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(207, 212, 219, .85);
  background: rgba(247, 247, 244, .91);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(83, 55, 0, .12);
}

.brand-mark svg {
  width: 24px;
  fill: none;
  stroke: #271a00;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(245, 167, 0, .35);
  outline-offset: 3px;
}

.button-primary {
  background: var(--gold);
  color: #241700;
  box-shadow: 0 9px 20px rgba(245, 167, 0, .2);
}

.button-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 28px rgba(245, 167, 0, .28);
}

.button-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

.button-light:hover {
  background: var(--gold-light);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.button-large {
  min-height: 56px;
  padding: 16px 24px;
}

.button-full {
  width: 100%;
  margin-top: 24px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: .5;
  transform: none;
  box-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.eyebrow.light {
  color: var(--gold-light);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
}

.hero::before {
  position: absolute;
  top: -180px;
  left: -170px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(245, 167, 0, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(245, 167, 0, .025), 0 0 0 140px rgba(245, 167, 0, .02);
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: clamp(48px, 7vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-actions > p {
  max-width: 210px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.55;
}

.hero-actions > p span {
  margin-inline: 2px;
  color: var(--gold-deep);
}

.free-explainer {
  display: flex;
  max-width: 610px;
  align-items: flex-start;
  gap: 11px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.free-explainer svg {
  width: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.free-explainer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.free-explainer strong {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  right: -24px;
  bottom: 28px;
  width: 78%;
  height: 74%;
  border-radius: var(--radius-lg);
  background: var(--gold);
  content: "";
  transform: rotate(3deg);
}

.hero-photo-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: var(--radius-lg);
  background: #ddd;
  box-shadow: var(--shadow-lg);
}

.hero-photo-wrap > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 52% center;
}

.photo-chip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.photo-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 167, 0, .16);
}

.hero-visual figcaption {
  margin-top: 10px;
  color: var(--muted-light);
  font-size: 10px;
  text-align: right;
}

.trust-section {
  padding-bottom: 48px;
}

.trust-bar {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.google-mini,
.trust-item {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 11px;
  padding: 17px;
  border-right: 1px solid var(--line);
}

.trust-bar > :last-child {
  border-right: 0;
}

.google-mini img {
  width: 30px;
  flex: 0 0 30px;
}

.google-mini > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 7px;
  font-family: "Roboto", Arial, sans-serif;
}

.google-mini strong {
  font-size: 20px;
  line-height: 1;
}

.google-mini .stars {
  color: #fbbc04;
  font-size: 13px;
  letter-spacing: -1px;
}

.google-mini small {
  grid-column: 1 / -1;
  margin-top: 5px;
  color: #70757a;
  font-size: 10px;
}

.trust-item > span {
  color: var(--gold-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.trust-item p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.trust-item strong {
  font-size: 12px;
  line-height: 1.25;
}

.trust-item small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.match-section {
  border-block: 1px solid var(--line);
  background: var(--canvas-2);
}

.match-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(290px, .76fr) minmax(520px, 1.24fr);
  gap: clamp(48px, 8vw, 104px);
}

.match-copy {
  position: sticky;
  top: 118px;
  padding-top: 22px;
}

.match-copy h2 {
  font-size: clamp(2.35rem, 4.2vw, 3.8rem);
}

.match-copy > p {
  max-width: 500px;
  color: var(--muted);
  font-size: 16px;
}

.match-points {
  display: grid;
  gap: 15px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.match-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.match-points li > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
}

.match-points div {
  display: flex;
  flex-direction: column;
}

.match-points strong {
  font-size: 14px;
}

.match-points small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.privacy-promise {
  display: flex;
  gap: 10px;
  margin-top: 34px;
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, .64);
}

.privacy-promise svg {
  width: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.privacy-promise p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.survey-card {
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 30px 30px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.survey-topline {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
}

.survey-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  padding: 4px 2px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.survey-back svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.survey-counter {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.survey-progress {
  overflow: hidden;
  height: 4px;
  margin: 10px 0 30px;
  border-radius: 999px;
  background: #eceef1;
}

.survey-progress span {
  display: block;
  width: 16.666%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transition: width .35s ease;
}

.form-step[hidden] {
  display: none !important;
}

.form-step.is-active {
  animation: step-in .28s ease both;
}

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

.question-kicker {
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.form-step h3 {
  max-width: 570px;
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3.3vw, 2.3rem);
}

.question-help {
  max-width: 590px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.field-group {
  display: flex;
  flex-direction: column;
}

.field-group label {
  margin-bottom: 7px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 750;
}

.field-group input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0 15px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 167, 0, .13);
}

.field-group input[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, .08);
}

.field-group small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.field-error,
.choice-error {
  display: block;
  min-height: 17px;
  margin-top: 5px;
  color: var(--danger);
  font-size: 11px;
  font-weight: 650;
}

.field-error:empty,
.choice-error:empty,
.submit-status:empty {
  display: none;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.option-list,
.option-grid {
  display: grid;
  gap: 9px;
}

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

.option-card {
  position: relative;
  display: flex;
  min-height: 65px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.option-card:hover {
  border-color: #c5a14c;
  transform: translateY(-1px);
}

.option-card:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-soft);
  box-shadow: 0 0 0 2px rgba(245, 167, 0, .1);
}

.option-card:has(input:focus-visible),
.option-card:has(input:focus) {
  outline: 3px solid rgba(245, 167, 0, .35);
  outline-offset: 2px;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-dot {
  position: relative;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border: 1.5px solid #b8bec7;
  border-radius: 50%;
  background: #fff;
}

.option-card input:checked + .option-dot {
  border-color: var(--gold-deep);
}

.option-card input:checked + .option-dot::after {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.option-card > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.option-card strong {
  color: var(--ink-2);
  font-size: 13px;
  letter-spacing: -.01em;
  line-height: 1.25;
}

.option-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.option-card.compact {
  min-height: 58px;
}

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

.contact-fields .full {
  grid-column: 1 / -1;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 13px;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  line-height: 1.45;
}

.consent-row input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 1px 0 0;
  accent-color: var(--gold-deep);
}

.notice-at-collection {
  margin: 14px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.notice-at-collection a {
  color: var(--ink-2);
  font-weight: 650;
}

.submit-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.route-step,
.success-step {
  padding-top: 6px;
}

.route-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 15px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 22px;
  font-weight: 900;
}

.booking-caveat {
  margin: -4px 0 16px;
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--gold-soft);
  color: #674700;
  font-size: 10px;
}

.calendar-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}

/* Horizontal day picker */
.day-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 4px -4px 14px;
  padding: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.day-rail::-webkit-scrollbar {
  height: 4px;
}

.day-rail::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--line-strong);
}

.day-pill {
  display: flex;
  min-width: 60px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 9px 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.day-pill:hover {
  border-color: var(--line-strong);
}

.day-pill.is-selected {
  border-color: var(--gold);
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.day-weekday {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.day-number {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

.day-month {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

/* Time grid. One tap books. */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}

.time-slot {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px 8px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .12s ease;
}

.time-slot:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.time-slot.is-selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.time-slot:disabled {
  cursor: default;
  opacity: .45;
}

.time-slot.is-booking {
  opacity: 1;
}

.time-slot.is-booking::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 7px;
  border: 2px solid rgba(16, 19, 24, .3);
  border-radius: 50%;
  border-top-color: var(--ink);
  animation: slot-spin .7s linear infinite;
}

@keyframes slot-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .day-pill,
  .time-slot { transition: none; }
  .time-slot.is-booking::after { animation: none; }
}

/* Optional post-booking enrichment */
.address-capture {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 13px;
  padding: 16px;
  background: #fff;
  text-align: left;
}

.address-capture h4 {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 800;
}

.address-capture .contact-fields {
  margin-bottom: 12px;
}

.address-capture select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
}

.address-capture select:focus {
  border-color: var(--gold);
  outline: 2px solid var(--gold-light);
  outline-offset: 1px;
}

.button-quiet {
  margin-top: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
}

.button-quiet:hover {
  border-color: var(--line-strong);
  background: var(--canvas);
  color: var(--ink);
}

.address-saved {
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
}

.turnstile-slot {
  margin: 12px 0;
}

.turnstile-slot:empty {
  display: none;
}

.next-step-card,
.booking-confirmation {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 16px;
  background: var(--canvas);
}

.next-step-card strong {
  font-size: 13px;
}

.next-step-card p,
.booking-confirmation p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.success-check {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #eaf7ee;
}

.success-check svg {
  width: 34px;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.section-heading.centered {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.benefit-section {
  background: #fff;
}

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

.benefit-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 27px;
  background: var(--canvas);
}

.benefit-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 750;
}

.benefit-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.proof-section {
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.proof-section h2,
.proof-section h3 {
  color: #fff;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: 50px;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  margin: 0 0 6px;
  color: #aeb5c0;
  font-size: 15px;
}

.subsection-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 62px;
  margin-bottom: 20px;
}

.subsection-heading span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.subsection-heading h3 {
  margin: 5px 0 0;
  font-size: 27px;
}

.rail-controls {
  display: flex;
  gap: 7px;
}

.rail-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}

.rail-controls button:hover {
  border-color: var(--gold);
  background: rgba(245, 167, 0, .08);
}

.scroll-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.scroll-rail::-webkit-scrollbar {
  display: none;
}

.project-card {
  overflow: hidden;
  flex: 0 0 calc(33.333% - 12px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: var(--dark-2);
  scroll-snap-align: start;
}

.project-card > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.project-copy {
  padding: 20px;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.project-meta > span,
.project-meta small {
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.project-meta > span {
  background: var(--gold);
  color: #241700;
}

.project-meta small {
  border: 1px solid rgba(255, 255, 255, .16);
  color: #b8bec8;
}

.project-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.project-card p {
  min-height: 82px;
  margin-bottom: 18px;
  color: #b7bec8;
  font-size: 12px;
}

.project-card footer {
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding-top: 15px;
}

.project-card footer img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.project-card footer > span {
  display: flex;
  flex-direction: column;
}

.project-card footer strong {
  font-size: 11px;
}

.project-card footer small {
  color: #8e96a3;
  font-size: 9px;
}

.message-heading {
  margin-top: 74px;
}

.message-rail {
  gap: 22px;
}

.message-card {
  flex: 0 0 calc(33.333% - 15px);
  margin: 0;
  scroll-snap-align: start;
}

.message-card > img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .28);
}

.message-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  color: #d8dce2;
  font-size: 10px;
}

.message-card figcaption small {
  color: #8d96a3;
}

.reviews-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f3f4f5;
}

.google-review-summary {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  margin-bottom: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 19px 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-family: "Roboto", Arial, sans-serif;
}

.google-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-title > img {
  width: 35px;
}

.google-title > div {
  display: flex;
  flex-direction: column;
}

.google-title strong {
  font-size: 16px;
}

.google-title small {
  margin-top: 2px;
  color: #70757a;
  font-size: 11px;
}

.rating-lockup {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 10px;
}

.rating-lockup > strong {
  color: #202124;
  font-size: 29px;
  line-height: 1;
}

.rating-lockup > small {
  grid-column: 1 / -1;
  margin-top: 6px;
  color: #70757a;
  font-size: 10px;
}

.rating-stars {
  position: relative;
  display: inline-block;
  color: #dadce0;
  font-size: 18px;
  letter-spacing: -2px;
  line-height: 1;
}

.rating-stars i {
  position: absolute;
  top: 0;
  left: 0;
  width: 96%;
  overflow: hidden;
  color: #fbbc04;
  font-style: normal;
  white-space: nowrap;
}

.google-review-summary .rail-controls button {
  border-color: var(--line-strong);
  color: var(--ink);
}

.review-rail {
  gap: 16px;
}

.google-review-card {
  position: relative;
  min-height: 255px;
  flex: 0 0 calc(33.333% - 11px);
  border: 1px solid #dadce0;
  border-radius: 13px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(60, 64, 67, .08);
  color: #202124;
  font-family: "Roboto", Arial, sans-serif;
  scroll-snap-align: start;
}

.google-review-card header {
  display: grid;
  align-items: center;
  grid-template-columns: 44px 1fr 20px;
  gap: 10px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.google-review-card header > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.google-review-card header strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-review-card header small {
  margin-top: 2px;
  color: #70757a;
  font-size: 11px;
}

.review-google {
  width: 20px;
}

.review-stars {
  margin-top: 13px;
  color: #fbbc04;
  font-size: 17px;
  letter-spacing: -1px;
}

.review-stars span {
  color: #dadce0;
}

.google-review-card > p {
  margin: 9px 0 0;
  color: #3c4043;
  font-size: 13px;
  line-height: 1.5;
}

.verification-section {
  background: var(--dark);
  color: #fff;
}

.verification-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  gap: clamp(50px, 8vw, 110px);
}

.verification-copy h2,
.process-list h3 {
  color: #fff;
}

.verification-copy > p {
  max-width: 620px;
  color: #b3bbc6;
  font-size: 16px;
}

.verification-caveat {
  margin-top: 28px;
  border-left: 3px solid var(--gold);
  padding: 3px 0 3px 16px;
  color: #9fa8b5;
  font-size: 11px;
}

.verification-caveat strong {
  color: #fff;
}

.process-list {
  display: grid;
}

.process-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
}

.process-list article:first-child {
  padding-top: 0;
}

.process-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(245, 167, 0, .4);
  border-radius: 12px;
  color: var(--gold-light);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.process-list p {
  margin: 0;
  color: #9fa8b5;
  font-size: 12px;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, .75fr) minmax(500px, 1.25fr);
  gap: clamp(48px, 8vw, 110px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 69px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--gold-deep);
  font-size: 23px;
  font-weight: 400;
  transition: transform .18s ease;
}

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

.faq-list details p {
  margin: -4px 40px 23px 0;
  color: var(--muted);
  font-size: 13px;
}

.final-cta {
  background: var(--gold);
}

.final-cta-inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 60px;
}

.final-cta .eyebrow {
  color: #513700;
}

.final-cta .eyebrow > span {
  background: #513700;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 10px;
}

.final-cta p {
  max-width: 650px;
  margin: 0;
  color: #493200;
}

.final-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
}

.final-actions small {
  color: #4a3300;
  font-size: 10px;
  font-weight: 650;
  text-align: center;
}

.site-footer {
  padding: 54px 0 26px;
  background: var(--dark);
  color: #fff;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand .brand small {
  color: #87909d;
}

.footer-brand > p {
  margin: 17px 0 0;
  color: #8e97a4;
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links a {
  color: #adb5c0;
  font-size: 11px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-legal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding-top: 20px;
}

.footer-legal p {
  max-width: 800px;
  margin: 0;
  color: #737d8a;
  font-size: 9px;
}

.footer-legal p:last-child {
  flex: 0 0 auto;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 46px;
  }

  h1 {
    font-size: clamp(3.2rem, 6.7vw, 4.4rem);
  }

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

  .google-mini {
    grid-column: 1 / -1;
  }

  .google-mini,
  .trust-item {
    min-height: 72px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .match-grid,
  .faq-grid {
    grid-template-columns: minmax(270px, .7fr) minmax(480px, 1.3fr);
    gap: 44px;
  }

  .survey-card {
    padding-inline: 24px;
  }

  .project-card,
  .message-card,
  .google-review-card {
    flex-basis: calc(50% - 9px);
  }

  .verification-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

/* ------------------------------------------------ ConnectADU family route */

.brand-logo {
  display: inline-flex;
  min-width: 0;
}

.brand-logo > img {
  width: 168px;
  height: auto;
}

.brand-logo-footer > img {
  width: 164px;
}

.family-page .site-header {
  background: rgba(247, 247, 244, .95);
}

.family-page .family-hero h1 {
  max-width: 760px;
}

.family-page .family-hero .hero-lede {
  max-width: 680px;
  font-size: 19px;
}

.family-page .family-trust-bar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.choice-section::before {
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(245, 167, 0, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(245, 167, 0, .025), 0 0 0 144px rgba(245, 167, 0, .018);
  content: "";
  pointer-events: none;
}

.choice-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, .78fr) minmax(560px, 1.22fr);
  gap: clamp(48px, 8vw, 106px);
}

.choice-copy h2 {
  max-width: 560px;
  color: #fff;
}

.choice-copy > p {
  max-width: 540px;
  margin: 0;
  color: #aab2bd;
  font-size: 17px;
}

.choice-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice-card {
  position: relative;
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius);
  padding: 23px;
}

.choice-card small {
  display: block;
  margin-bottom: 26px;
  color: #7f8996;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.choice-card h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 22px;
}

.choice-card p {
  margin: 0;
  color: #8e98a5;
  font-size: 12px;
}

.choice-card-muted {
  background: rgba(255, 255, 255, .035);
}

.choice-card-muted::after {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 28px;
  height: 1px;
  background: #5b6470;
  content: "";
  transform: rotate(-28deg);
}

.choice-card-third {
  min-height: 180px;
  grid-column: 1 / -1;
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}

.choice-card-third small,
.choice-card-third h3,
.choice-card-third p {
  color: #241700;
}

.choice-card-third h3 {
  max-width: 500px;
  font-size: 30px;
}

.choice-card-third p {
  max-width: 540px;
  font-size: 14px;
}

.choice-card-third::after {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(36, 23, 0, .2);
  content: "03";
  font-family: "Space Grotesk", sans-serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: 1;
}

.choice-join {
  position: absolute;
  z-index: 2;
  top: 60px;
  left: 50%;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background: var(--dark);
  color: #7f8996;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.family-page .benefit-number {
  margin-bottom: 26px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.family-page .verification-copy > p {
  font-size: 15px;
}

/* ---------------------------------------------------------- legal pages */

.legal-page {
  background: #fff;
}

.legal-shell {
  width: min(calc(100% - 48px), 820px);
  margin: 0 auto;
  padding: 80px 0 110px;
}

.legal-shell .eyebrow {
  margin-bottom: 16px;
}

.legal-shell h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 7vw, 4.7rem);
}

.legal-updated {
  margin: -8px 0 45px;
  color: var(--muted);
  font-size: 13px;
}

.legal-content {
  color: var(--ink-2);
}

.legal-content h2 {
  margin: 52px 0 15px;
  font-size: 28px;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-size: 19px;
}

.legal-content p,
.legal-content li {
  color: #4f5865;
  font-size: 15px;
  line-height: 1.75;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-callout {
  margin: 36px 0;
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 18px;
  color: var(--ink);
  font-weight: 650;
}

@media (max-width: 1020px) {
  .choice-grid {
    grid-template-columns: minmax(250px, .72fr) minmax(470px, 1.28fr);
    gap: 46px;
  }
}

@media (max-width: 780px) {
  .brand-logo > img {
    width: 142px;
  }

  .choice-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .choice-card-third {
    min-height: 165px;
  }

  .legal-shell {
    width: min(calc(100% - 32px), 820px);
    padding-top: 58px;
  }
}

@media (max-width: 480px) {
  .brand-logo > img {
    width: 126px;
  }

  .family-page .family-hero h1 {
    font-size: clamp(2.45rem, 11.7vw, 3.2rem);
  }

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

  .choice-join {
    display: none;
  }

  .choice-card-third {
    grid-column: auto;
  }

  .choice-card-third::after {
    font-size: 44px;
  }

  .family-page .family-trust-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
  }

  html {
    scroll-padding-top: 78px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-pad {
    padding-block: 68px;
  }

  .section-pad-sm {
    padding-block: 54px;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-grid,
  .match-grid,
  .split-heading,
  .verification-grid,
  .faq-grid,
  .final-cta-inner {
    /* minmax(0, 1fr), not 1fr: a bare 1fr track has an implicit auto
       minimum, so the horizontally scrolling day rail would widen the
       column past the viewport instead of scrolling inside it. */
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    gap: 40px;
  }

  h1 {
    font-size: clamp(2.85rem, 12.6vw, 4rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2.05rem, 9.2vw, 3rem);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
  }

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

  .hero-actions > p {
    max-width: none;
    text-align: center;
  }

  .free-explainer {
    margin-top: 23px;
    padding-top: 18px;
  }

  .hero-visual::before {
    right: -10px;
    bottom: 12px;
  }

  .hero-photo-wrap > img {
    object-position: 49% center;
  }

  .photo-chip {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    font-size: 10px;
  }

  .trust-section {
    padding-bottom: 30px;
  }

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

  body.no-prototype-proof .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  .google-mini {
    grid-column: 1 / -1;
  }

  .trust-item {
    padding: 13px;
  }

  .trust-item:nth-child(odd) {
    border-right: 0;
  }

  .trust-item strong {
    font-size: 11px;
  }

  .match-grid {
    gap: 30px;
  }

  .match-copy {
    position: static;
    padding-top: 0;
  }

  .match-copy .match-points,
  .match-copy .privacy-promise {
    display: none;
  }

  .match-copy > p {
    margin-bottom: 0;
  }

  .survey-card {
    min-height: 0;
    border-radius: 18px;
    padding: 20px 18px 22px;
  }

  .survey-progress {
    margin-bottom: 23px;
  }

  .button-full {
    margin-top: 18px;
  }

  .form-step h3 {
    font-size: 1.75rem;
  }

  .question-help {
    margin-bottom: 18px;
  }

  .option-card {
    min-height: 58px;
    padding: 10px 12px;
  }

  .option-card small {
    font-size: 9px;
  }

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

  .benefit-grid article {
    min-height: 0;
    padding: 21px;
  }

  .benefit-number {
    margin-bottom: 17px;
  }

  .split-heading {
    gap: 13px;
  }

  .split-heading > p {
    font-size: 13px;
  }

  .subsection-heading {
    margin-top: 46px;
  }

  .subsection-heading h3 {
    font-size: 23px;
  }

  .project-rail,
  .message-rail,
  .review-rail {
    width: calc(100% + 16px);
    padding-right: 16px;
  }

  .project-card {
    flex-basis: min(86vw, 380px);
  }

  .project-card p {
    min-height: 0;
  }

  .message-card {
    flex-basis: min(78vw, 330px);
  }

  .google-review-summary {
    grid-template-columns: 1fr auto;
    gap: 17px;
    padding: 16px;
  }

  .google-review-summary .rail-controls {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .google-review-card {
    min-height: 245px;
    flex-basis: min(84vw, 340px);
  }

  .verification-grid {
    gap: 46px;
  }

  .faq-grid {
    gap: 26px;
  }

  .final-cta-inner {
    gap: 28px;
  }

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

  .footer-grid,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-legal {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand strong {
    font-size: 12px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .header-cta {
    padding-inline: 11px;
    font-size: 10px;
  }

  .hero {
    padding-top: 43px;
  }

  h1 {
    margin-bottom: 19px;
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .hero-lede {
    margin-bottom: 23px;
    font-size: 15px;
    line-height: 1.55;
  }

  .button-large {
    min-height: 54px;
  }

  .trust-item {
    min-height: 78px;
    align-items: flex-start;
  }

  .trust-item > span {
    margin-top: 2px;
  }

  .contact-fields,
  .slot-list {
    grid-template-columns: 1fr;
  }

  .contact-fields .full {
    grid-column: auto;
  }

  .option-grid-2 {
    gap: 8px;
  }

  .option-grid-2 .option-card {
    min-height: 53px;
  }

  .question-help {
    font-size: 12px;
  }

  .rail-controls {
    display: none;
  }

  .google-review-summary {
    grid-template-columns: 1fr;
  }

  .rating-lockup {
    justify-self: start;
  }

  .process-list article {
    grid-template-columns: 40px 1fr;
    gap: 13px;
  }

  .process-list article > span {
    width: 38px;
    height: 38px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
