/* 637 Willow Bend — The Grace Group landing
   Charcoal / gold luxury, mobile-first */

:root {
  --bg: #121212;
  --bg-elevated: #1a1a1a;
  --bg-card: #222222;
  --bg-card-hover: #2a2a2a;
  --charcoal: #1c1c1c;
  --gold: #c9a227;
  --gold-soft: #d4b84a;
  --gold-dim: rgba(201, 162, 39, 0.18);
  --gold-glow: rgba(201, 162, 39, 0.35);
  --cream: #f5f0e6;
  --cream-muted: #c8c2b4;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 162, 39, 0.55);
  --danger: #e8a0a0;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --max: 1120px;
  --narrow: 680px;
  --sticky-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-soft);
  text-decoration: none;
}
a:hover {
  color: var(--cream);
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.container--narrow {
  width: min(100% - 2rem, var(--narrow));
}

.section {
  padding: 4.5rem 0;
}
.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.section__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}
.section__lead {
  margin: 0 0 2rem;
  max-width: 38rem;
  color: var(--cream-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.98);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), #b8921f);
  color: #1a1408;
  box-shadow: 0 8px 28px var(--gold-glow);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #120e05;
}
.btn--outline {
  background: transparent;
  border-color: var(--border-gold);
  color: var(--cream);
}
.btn--outline:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--cream-muted);
  border-color: var(--border);
}
.btn--ghost:hover {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
}
.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.35s var(--ease);
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta__inner {
  width: min(100% - 1.25rem, var(--max));
  margin: 0 auto;
  min-height: var(--sticky-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.sticky-cta__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sticky-cta__addr {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__price {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}
.sticky-cta__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Hero — compact so form sits just below */
.hero {
  position: relative;
  min-height: min(68svh, 640px);
  max-height: 720px;
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
}
.hero__video,
.hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)),
    url("assets/photos/photo-01.jpg") center / cover no-repeat;
  z-index: 0;
}
.hero__video {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: auto;
  cursor: pointer;
}
.hero__video.is-ready {
  opacity: 1;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.35) 0%, rgba(18, 18, 18, 0.15) 35%, rgba(18, 18, 18, 0.85) 78%, var(--bg) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.12), transparent 50%);
  pointer-events: none;
}
.hero__play {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 1rem;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}
.hero__play[hidden] {
  display: none;
}
.hero__play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: rgba(18, 18, 18, 0.55);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}
.hero__play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--gold);
}
.hero__play:hover .hero__play-icon {
  transform: scale(1.06);
  background: rgba(201, 162, 39, 0.2);
  box-shadow: 0 12px 40px var(--gold-glow);
}
.hero__play-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.hero__content {
  position: relative;
  z-index: 4;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 3.5rem 0 2.25rem;
  pointer-events: none; /* don't block Tap for sound */
}
.hero__content a,
.hero__content button {
  pointer-events: auto;
}
.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
}
.hero__subtitle {
  margin: 0.5rem 0 0;
  color: var(--cream-muted);
  font-size: 1.05rem;
}
.hero__price {
  margin: 1rem 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--gold);
}
.hero__stats {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.stat-pill {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream);
  backdrop-filter: blur(6px);
}
.hero__cta {
  margin-bottom: 1.25rem;
}
.hero__agent {
  margin: 0;
  font-size: 0.85rem;
  color: var(--cream-muted);
}

/* Trust strip */
.trust {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
}
.trust__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
}
.trust__label {
  font-weight: 600;
  color: var(--gold);
}
.trust__sep {
  margin: 0 0.35rem;
  color: var(--cream-muted);
}
.trust__text {
  color: var(--cream-muted);
}
.trust__call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--cream);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-gold);
}
.trust__call:hover {
  background: var(--gold-dim);
  color: var(--white);
}
.trust__web {
  color: var(--cream-muted);
  font-size: 0.85rem;
}

/* Why cards */
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.why-card__icon {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}
.why-card__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}
.why-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--cream-muted);
}

/* Gallery */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  padding: 0;
  aspect-ratio: 4 / 3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.04);
}
.gallery__item::after {
  content: attr(data-caption);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery__item:hover::after,
.gallery__item:focus-visible::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__figure {
  margin: 0;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__figure img {
  max-height: 80vh;
  width: auto;
  max-width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.lightbox__caption {
  margin-top: 0.75rem;
  color: var(--cream-muted);
  font-size: 0.9rem;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.lightbox__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-size: 1.75rem;
  cursor: pointer;
}
.lightbox__nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Facts */
.facts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.fact {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.fact__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.fact__value {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 500;
}
.neighborhood {
  display: grid;
  gap: 1rem;
}
.neighborhood__card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}
.neighborhood__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
}
.neighborhood__card p {
  margin: 0;
  color: var(--cream-muted);
}
.school-list,
.feature-list {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
  color: var(--cream);
}
.school-list li,
.feature-list li {
  margin-bottom: 0.35rem;
}
.school-note {
  font-size: 0.82rem !important;
  color: var(--cream-muted) !important;
}

/* Form */
.tour {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
    var(--bg);
  border-top: 1px solid var(--border);
}
.form-progress {
  margin-bottom: 1.75rem;
}
.form-progress__bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.85rem;
}
.form-progress__bar span {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 999px;
  transition: width 0.35s var(--ease);
}
.form-progress__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--cream-muted);
}
.form-progress__steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}
.form-progress__steps li span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.8rem;
}
.form-progress__steps li.is-active {
  color: var(--gold);
}
.form-progress__steps li.is-active span {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}
.form-progress__steps li.is-done span {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1408;
}
.form-progress__steps li.is-done {
  color: var(--cream);
}

/* Form directly under hero — compact panel */
.tour--below-hero {
  padding-top: 0;
  margin-top: -2.5rem;
  position: relative;
  z-index: 5;
}
.tour--below-hero > .container {
  background: var(--bg-elevated, #1c1c1c);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem 1.35rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.tour--below-hero .section__title {
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  margin-bottom: 0.35rem;
}
.tour--below-hero .section__lead {
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}
.tour--below-hero .choice-cards {
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.tour--below-hero .choice-card__desc {
  font-size: 0.78rem;
}
.tour--below-hero .choice-card__title {
  font-size: 0.92rem;
}
.tour--below-hero .form-step__legend {
  font-size: 1.05rem;
}
.tour--below-hero .form-progress {
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .tour--below-hero {
    margin-top: -1.25rem;
  }
  .tour--below-hero > .container {
    border-radius: 14px;
    padding: 1.35rem 1rem 1.25rem;
  }
  .tour--below-hero .choice-cards {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: min(52svh, 480px);
  }
  .hero__content {
    padding: 2.5rem 0 1.75rem;
  }
  .hero__cta {
    display: none; /* form is immediately below on mobile */
  }
}

.lead-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem 1.15rem 1.35rem;
  box-shadow: var(--shadow);
}
.form-step {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}
.form-step[hidden] {
  display: none;
}
.form-step__legend {
  padding: 0;
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.5vw, 1.7rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}
.form-step__hint {
  margin: -0.35rem 0 1rem;
  color: var(--cream-muted);
  font-size: 0.92rem;
}
.form-subhead {
  margin: 1.35rem 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.choice-cards {
  display: grid;
  gap: 0.65rem;
}
.choice-card {
  display: block;
  cursor: pointer;
  position: relative;
}
.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-card__body {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.choice-card__title {
  display: block;
  font-weight: 600;
  color: var(--cream);
  font-size: 0.98rem;
}
.choice-card__desc {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--cream-muted);
}
.choice-card:hover .choice-card__body {
  border-color: rgba(201, 162, 39, 0.35);
  background: var(--bg-card-hover);
}
.choice-card input:checked + .choice-card__body,
.choice-card input:focus-visible + .choice-card__body {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim), 0 8px 24px rgba(201, 162, 39, 0.15);
  background: rgba(201, 162, 39, 0.08);
}
.choice-card input:focus-visible + .choice-card__body {
  outline: none;
}

.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}
.field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--white);
}
.field input::placeholder {
  color: rgba(200, 194, 180, 0.45);
}
.field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
  outline: none;
}
.field-note {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--cream-muted);
}
.field-error {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--danger);
}
.field-error[hidden] {
  display: none;
}

.form-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
}
.form-nav .btn--gold,
.form-nav [type="submit"] {
  margin-left: auto;
}

.form-success[hidden] {
  display: none;
}
.form-success__card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 2.25rem 1.5rem;
  box-shadow: 0 0 40px var(--gold-dim);
}
.form-success__card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--white);
}
.form-success__card p {
  color: var(--cream-muted);
  margin: 0 0 0.75rem;
}
.form-success__or {
  margin-top: 1.25rem !important;
  font-size: 0.85rem;
}
.form-success__card .btn {
  margin: 0.35rem;
}

/* Footer */
.footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: #0e0e0e;
  text-align: center;
}
.footer__slogan {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-style: italic;
  color: var(--gold);
}
.footer__agent {
  margin: 0 0 1.5rem;
  color: var(--cream-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer__agent strong {
  color: var(--cream);
  font-weight: 600;
}
.footer__eho {
  margin: 0 auto 1rem;
  max-width: 40rem;
  font-size: 0.78rem;
  color: rgba(200, 194, 180, 0.7);
  line-height: 1.55;
}
.footer__eho-icon {
  margin-right: 0.25rem;
}
.footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(200, 194, 180, 0.55);
}

/* Responsive */
@media (min-width: 560px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why__grid .why-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .facts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .lead-form {
    padding: 1.75rem 1.5rem 1.5rem;
  }
  .sticky-cta__info {
    flex-direction: row;
    align-items: baseline;
    gap: 0.75rem;
  }
}

@media (min-width: 900px) {
  .section {
    padding: 5.5rem 0;
  }
  .why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why__grid .why-card:nth-child(4),
  .why__grid .why-card:nth-child(5) {
    grid-column: auto;
  }
  .why__grid .why-card:nth-child(4) {
    grid-column: 1 / 2;
  }
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .facts__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .neighborhood {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero__content {
    padding-bottom: 4.5rem;
  }
  .form-progress__steps {
    font-size: 0.8rem;
  }
  .form-progress__steps li {
    flex-direction: row;
    justify-content: center;
    gap: 0.4rem;
  }
}

@media (min-width: 1100px) {
  .why__grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .why__grid .why-card:nth-child(4),
  .why__grid .why-card:nth-child(5),
  .why__grid .why-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
