:root {
  color-scheme: light;
  --ink: #111111;
  --soft-ink: #333333;
  --muted: #747474;
  --line: #e8e8e8;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --soft-2: #f1f1f1;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.09);
  --radius: 18px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(22px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  z-index: 20;
}

.site-header.is-elevated {
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.brand img {
  height: 42px;
  object-fit: contain;
  width: 112px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.desktop-nav a,
.mobile-menu a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--ink);
}

.menu-button {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.menu-button svg {
  height: 20px;
  width: 20px;
}

.mobile-menu {
  background: white;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
  display: grid;
  gap: 4px;
  left: 0;
  padding: 88px 18px 18px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 15;
}

.mobile-menu a {
  border-radius: 14px;
  padding: 16px;
}

.hero {
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 0, 0, 0.045), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  min-height: 100vh;
  padding: 112px 20px 72px;
}

.hero-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
}

.hero-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 820px;
}

.hero-kicker {
  color: var(--muted);
  display: inline-block;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.profile-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.08);
  margin-top: 34px;
  max-width: min(360px, 82vw);
  padding: clamp(14px, 2.5vw, 22px);
}

.profile-card img {
  border-radius: 18px;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.mobile-profile-card {
  display: none;
}

.hero h1,
.section-copy h2,
.questions-section h2 {
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 82px);
  max-width: 820px;
}

.hero h1 span {
  color: var(--ink);
}

.hero-lead {
  color: var(--soft-ink);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 650;
  line-height: 1.45;
  margin: 22px 0 0;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.hero-start {
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 560px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  margin: 24px 0 0;
  max-width: 640px;
  padding: 0;
}

.hero-highlights li {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 850;
  padding: 10px 13px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

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

.button.primary {
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  color: white;
}

.button.primary:hover {
  background: #2c2c2c;
}

.button.secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.button.full {
  width: 100%;
}

.find-home-section,
.home-value-section,
.questions-section,
.contact-section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 88px clamp(20px, 5vw, 44px);
}

.find-home-section {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 52px);
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.section-copy {
  max-width: 560px;
}

.eyebrow {
  color: var(--ink);
  display: inline-block;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-copy h2,
.questions-section h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.section-copy p,
.questions-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 20px 0 0;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0;
}

.find-home-actions {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.feature-chips span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 850;
  padding: 10px 14px;
}

.listed-preview {
  margin: 0 auto;
  min-height: clamp(620px, 55vw, 760px);
  position: relative;
  width: min(720px, 100%);
}

.listed-device {
  --bezel: 8px;
  --phone-radius: 48px;
  --screen-radius: 39px;
  background: linear-gradient(145deg, #3c3c3e 0%, #101012 12%, #050505 58%, #1d1d1f 90%, #444446 100%);
  border: 1px solid #2d2d2f;
  border-radius: var(--phone-radius);
  box-sizing: border-box;
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.16),
    0 10px 24px rgba(0, 0, 0, 0.14),
    inset 0 0 0 2px #151516,
    inset 0 0 0 4px #050505,
    inset 0 0 0 5px rgba(255, 255, 255, 0.06);
  cursor: pointer;
  overflow: visible;
  padding: var(--bezel);
  position: absolute;
  transform-origin: center;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.listed-device::before {
  background: linear-gradient(#303032, #09090a);
  border-radius: 999px;
  content: "";
  height: 34px;
  left: -2px;
  position: absolute;
  top: 98px;
  width: 2px;
  box-shadow: 0 58px 0 #0d0d0e;
  z-index: 3;
}

.listed-device::after {
  background: linear-gradient(#303032, #09090a);
  border-radius: 999px;
  content: "";
  height: 54px;
  pointer-events: none;
  right: -2px;
  top: 142px;
  width: 2px;
  position: absolute;
  z-index: 5;
}

.listed-device img {
  background: white;
  border-radius: var(--screen-radius);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  overflow: hidden;
  width: 100%;
}

.phone-speaker {
  background: #050505;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  height: 15px;
  left: 50%;
  position: absolute;
  top: calc(var(--bezel) + 7px);
  transform: translateX(-50%);
  width: 60px;
  z-index: 6;
}

.listed-map {
  aspect-ratio: 71 / 147;
  inset: 18px 0 auto auto;
  opacity: 0.86;
  width: min(340px, 53%);
  z-index: 1;
}

.listed-card {
  aspect-ratio: 71 / 147;
  inset: 0 auto auto 8%;
  width: min(340px, 55%);
  z-index: 2;
}

.listed-device:hover,
.listed-device:focus-visible {
  box-shadow:
    0 32px 78px rgba(0, 0, 0, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.16),
    inset 0 0 0 2px #151516,
    inset 0 0 0 4px #050505,
    inset 0 0 0 5px rgba(255, 255, 255, 0.08);
  opacity: 1;
  transform: translateY(-10px) scale(1.015);
  z-index: 4;
}

.listed-preview.is-map-active .listed-map,
.listed-preview.is-card-active .listed-card {
  box-shadow:
    0 32px 78px rgba(0, 0, 0, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.16),
    inset 0 0 0 2px #151516,
    inset 0 0 0 4px #050505,
    inset 0 0 0 5px rgba(255, 255, 255, 0.08);
  opacity: 1;
  transform: translateY(-10px) scale(1.015);
  z-index: 4;
}

.listed-preview.is-map-active .listed-card,
.listed-preview.is-card-active .listed-map {
  z-index: 1;
}

.home-value-section {
  align-items: start;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 28px;
  display: grid;
  gap: clamp(28px, 6vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  margin-bottom: 36px;
}

.home-value-content {
  display: grid;
  gap: 24px;
}

.home-value-visual {
  align-items: end;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.78)),
    url("./assets/listed-card.png");
  background-position: center 35%;
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  color: white;
  display: grid;
  min-height: 280px;
  overflow: hidden;
  padding: 24px;
}

.home-value-visual div {
  display: grid;
  gap: 8px;
}

.home-value-visual span {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  justify-self: start;
  padding: 8px 12px;
  text-transform: uppercase;
}

.home-value-visual strong {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.04;
  max-width: 380px;
}

.home-value-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.home-value-thanks {
  align-self: stretch;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  padding: clamp(26px, 4vw, 40px);
}

.home-value-thanks[hidden] {
  display: none;
}

.home-value-thanks h3 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.home-value-thanks p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

label {
  color: var(--soft-ink);
  display: grid;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
}

input,
select,
textarea {
  background: #fbfbfb;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  outline: none;
  padding: 15px 16px;
  resize: vertical;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(17, 17, 17, 0.42);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size:
    6px 6px,
    6px 6px;
}

.consult-dialog {
  background: transparent;
  border: 0;
  max-height: calc(100vh - 24px);
  max-width: min(680px, calc(100vw - 28px));
  overflow: auto;
  padding: 0;
  width: 100%;
}

.consult-dialog.is-calendar-step {
  max-height: calc(100dvh - 16px);
  max-width: min(1120px, calc(100vw - 28px));
}

.consult-dialog::backdrop {
  background: rgba(17, 17, 17, 0.54);
}

.consult-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
}

.consult-calendar,
.consult-contact {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 14px;
  padding: clamp(16px, 3vw, 24px);
}

.consult-calendar[hidden],
.consult-contact[hidden] {
  display: none;
}

.consult-calendar .consult-form-header h2 {
  font-size: clamp(28px, 4vw, 36px);
}

.consult-form-header {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.consult-form-header h2 {
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 0;
  line-height: 1;
  margin: 8px 0 0;
}

.dialog-close {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 26px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.dialog-close:hover {
  background: #ececec;
}

.consult-form-intro {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

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

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  text-align: center;
}

.calendar-back {
  justify-self: start;
}

.calendar-frame {
  border: 1px solid var(--line);
  border-radius: 14px;
  height: min(720px, calc(100vh - 210px));
  min-height: 560px;
  width: 100%;
}

.calendar-frame[hidden] {
  display: none;
}

.calendar-open-link {
  justify-self: start;
  text-decoration: none;
}

.calendar-open-link[hidden] {
  display: none;
}

.slot-status {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  padding: 14px 16px;
}

.date-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.date-button {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 2px;
  justify-items: center;
  min-height: 74px;
  padding: 9px 6px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.date-button:hover,
.date-button:focus-visible,
.date-button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
  outline: none;
}

.date-weekday,
.date-month {
  color: inherit;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.date-number {
  color: inherit;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.slot-list {
  display: grid;
  gap: 18px;
  max-height: min(520px, calc(100dvh - 270px));
  overflow: auto;
  padding-right: 4px;
}

.slot-day {
  display: grid;
  gap: 10px;
}

.slot-day h3 {
  font-size: 15px;
  margin: 0;
}

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

.slot-button {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 48px;
  padding: 12px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.slot-button:hover,
.slot-button:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
  outline: none;
}

.selected-slot {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
  padding: 14px 16px;
}

.meeting-options {
  border: 0;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.meeting-options legend {
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}

.meeting-option {
  align-items: flex-start;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.meeting-option input {
  flex: 0 0 auto;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.meeting-option strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.meeting-option small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 3px;
}

.meeting-option:has(input:checked) {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.meeting-option:has(input:checked) small {
  color: rgba(255, 255, 255, 0.72);
}

.consent-line {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  flex-direction: row;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  line-height: 1.45;
}

.consent-line input {
  flex: 0 0 auto;
  height: 18px;
  margin-top: 1px;
  width: 18px;
}

.questions-section,
.contact-section {
  text-align: center;
}

.question-list {
  display: grid;
  gap: 12px;
  margin: 34px auto;
  max-width: 840px;
  text-align: left;
}

details {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  font-size: 15px;
  margin-bottom: 0;
}

.contact-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
}

.contact-section h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  margin: 0;
}

.contact-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 16px auto 0;
  max-width: 560px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.contact-actions a {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  gap: 9px;
  padding: 13px 16px;
}

.contact-actions a:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.site-footer {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 26px;
  padding: 34px clamp(20px, 5vw, 72px);
}

.footer-main {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(240px, 1fr) minmax(240px, 0.85fr) auto;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 16px;
  min-width: 0;
}

.site-footer img {
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
  width: 104px;
}

.footer-brand div,
.footer-address {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.footer-brand strong {
  color: white;
  font-size: 18px;
  line-height: 1.1;
}

.site-footer p,
.site-footer address,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
  margin: 0;
}

.footer-address span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.footer-map-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-map-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  margin: 0;
}

.footer-brand strong {
  font-weight: 850;
}

.footer-top {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  padding: 10px 14px;
  white-space: nowrap;
}

.footer-top:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.toast {
  background: var(--ink);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  color: white;
  font-size: 14px;
  font-weight: 800;
  left: 50%;
  max-width: min(520px, calc(100vw - 32px));
  padding: 14px 18px;
  position: fixed;
  text-align: center;
  transform: translateX(-50%);
  z-index: 40;
}

.sticky-actions {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  display: flex;
  gap: 4px;
  padding: 6px;
  position: fixed;
  right: 22px;
  z-index: 30;
}

.sticky-actions a {
  align-items: center;
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 7px;
  padding: 11px 13px;
}

.sticky-actions a:hover {
  background: var(--soft);
}

.action-icon {
  color: var(--muted);
  flex: 0 0 auto;
  height: 17px;
  stroke-width: 2.2;
  width: 17px;
}

@media (min-width: 901px) {
  .hero {
    align-items: center;
    display: grid;
  }

  .hero-inner {
    display: grid;
    column-gap: clamp(44px, 7vw, 92px);
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
    text-align: left;
    max-width: 1120px;
    row-gap: 22px;
    width: 100%;
  }

  .hero-copy {
    align-items: flex-start;
    grid-column: 1;
    max-width: 690px;
  }

  .profile-card {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    max-width: 395px;
    align-self: center;
    justify-self: end;
  }

  .hero h1 {
    font-size: clamp(58px, 6vw, 92px);
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-highlights {
    justify-content: flex-start;
  }

  .find-home-section {
    gap: clamp(36px, 7vw, 82px);
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    justify-items: stretch;
    text-align: left;
  }

  .find-home-section .section-copy {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }

  .find-home-section .listed-preview {
    grid-column: 2;
    grid-row: 1 / 3;
    margin: 0;
    width: 100%;
  }

  .find-home-actions {
    grid-column: 1;
    grid-row: 2;
    justify-items: start;
  }

  .find-home-section .feature-chips {
    justify-content: flex-start;
  }
}

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

  .menu-button {
    display: inline-flex;
  }

  .find-home-section,
  .home-value-section {
    grid-template-columns: 1fr;
  }

  .section-copy {
    max-width: none;
    text-align: center;
  }

  .feature-chips {
    justify-content: center;
  }

  .find-home-actions {
    justify-items: center;
    text-align: center;
  }

  .home-value-content {
    text-align: center;
  }

  .listed-preview {
    margin: 0 auto;
    max-width: 520px;
    min-height: 680px;
    width: 100%;
  }

}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .consult-dialog.is-calendar-step {
    margin: 0;
    max-height: 100dvh;
    max-width: 100vw;
    width: 100vw;
  }

  .consult-form-header h2 {
    font-size: 30px;
  }

  .consult-calendar {
    border-radius: 0;
    min-height: 100dvh;
    padding: 14px 14px calc(130px + env(safe-area-inset-bottom));
  }

  .consult-contact {
    border-radius: 0;
    min-height: 100dvh;
    padding: 18px 18px calc(130px + env(safe-area-inset-bottom));
  }

  .consult-calendar .consult-form-header h2 {
    font-size: 26px;
  }

  .calendar-frame {
    border-radius: 10px;
    height: calc(100dvh - 185px);
    min-height: 680px;
  }

  .slot-list {
    max-height: none;
  }

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

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

  body {
    padding-bottom: 74px;
  }

  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .brand img {
    height: 38px;
    width: 104px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero h1 {
    font-size: clamp(38px, 10.5vw, 50px);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 17px;
    margin-top: 18px;
  }

  .hero-inner > .profile-card:not(.mobile-profile-card) {
    display: none;
  }

  .mobile-profile-card {
    display: block;
    margin-top: 22px;
    max-width: min(320px, 86vw);
    padding: 14px;
  }

  .hero-start {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 18px;
    font-size: 15px;
    margin-top: 18px;
    padding: 14px 16px;
  }

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

  .hero-actions {
    margin-top: 22px;
  }

  .hero-highlights {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-highlights li {
    font-size: 12px;
    padding: 9px 11px;
  }

  .hero-highlights li:nth-child(n + 3) {
    display: none;
  }
  .find-home-section,
  .home-value-section,
  .questions-section,
  .contact-section {
    padding: 70px 18px;
  }

  .home-value-section {
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .listed-preview {
    min-height: clamp(500px, 130vw, 620px);
    max-width: 430px;
  }

  .listed-device {
    --bezel: 7px;
    --phone-radius: 39px;
    --screen-radius: 32px;
  }

  .listed-device::before {
    height: 28px;
    left: -2px;
    top: 72px;
    width: 2px;
    box-shadow: 0 42px 0 #0d0d0e;
  }

  .listed-device::after {
    height: 42px;
    right: -2px;
    top: 106px;
    width: 2px;
  }

  .phone-speaker {
    height: 11px;
    top: calc(var(--bezel) + 5px);
    width: 46px;
  }

  .listed-map {
    right: 0;
    top: 42px;
    width: min(54%, 222px);
  }

  .listed-card {
    left: 0;
    top: 0;
    width: min(62%, 258px);
  }

  .site-footer {
    gap: 16px;
    padding-bottom: 104px;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .footer-map-links {
    justify-content: center;
  }

  .sticky-actions {
    border-radius: 22px 22px 0 0;
    bottom: 0;
    gap: 0;
    justify-content: space-around;
    left: 0;
    padding: 8px 10px max(8px, env(safe-area-inset-bottom));
    right: 0;
  }

  .sticky-actions a {
    flex-direction: column;
    flex: 1;
    gap: 4px;
    padding: 12px 6px;
    text-align: center;
  }

  .sticky-actions .action-icon {
    height: 18px;
    width: 18px;
  }
}
