:root {
  --black: #050505;
  --ink: #111111;
  --white: #ffffff;
  --paper: #f7f8f8;
  --line: #dfe7e5;
  --muted: #66706d;
  --trust: #2fb7a0;
  --trust-dark: #147f72;
  --trust-soft: #e7f6f3;
  --warm: #c76d4a;
  --warm-dark: #8f432a;
  --warm-soft: #f8ece6;
  --shadow: 0 18px 50px rgba(5, 5, 5, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 14px 36px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  line-height: 0;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 202px;
  height: 42px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--black);
  background: var(--trust);
  border-radius: 8px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a,
.nav-contact,
.footer-links a,
.footer-whatsapp {
  border-radius: 8px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.main-nav a {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.76);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-current {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-contact {
  padding: 10px 16px;
  color: var(--black);
  background: var(--trust);
  font-weight: 800;
}

.screen {
  scroll-margin-top: 74px;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-screen {
  min-height: 92svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.88) 42%, rgba(5, 5, 5, 0.78)),
    var(--black);
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: 44px;
  padding: 72px 0 56px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--trust);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.warm {
  color: var(--warm);
}

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

h1 {
  margin-bottom: 18px;
  font-size: 5rem;
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-lede,
.section-heading p,
.contact-copy p,
.focus-block p,
.process-list,
.footer-content p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: var(--black);
  background: var(--trust);
  border-color: var(--trust);
}

.button.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
}

.button:hover,
.button:focus-visible,
.nav-contact:hover,
.nav-contact:focus-visible {
  filter: brightness(1.08);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.car-banner {
  width: 100%;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-banner svg {
  width: min(760px, 100%);
  height: auto;
}

@keyframes streamline {
  100% {
    stroke-dashoffset: 2000px;
  }
}

.car-banner #stream {
  stroke: rgba(47, 183, 160, 0.9);
  stroke-dasharray: 1000px;
  stroke-dashoffset: 0;
  animation: streamline 1.76s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.car-banner .rim-pattern {
  transform-origin: center center;
  transform-box: fill-box;
  animation: spin 0.82s linear infinite;
}

@keyframes streak {
  100% {
    d: path("m270.81 171.77 58.288 94.061h24.17l-68.056-94.061zm21.698 0 64.579 94.061h6.1955l-68.058-94.061z");
  }
}

.car-banner #streak {
  fill: var(--trust);
  animation: streak 1.18s linear infinite;
}

.intro-screen,
.home-path-screen,
.catalog-screen,
.contact-screen {
  padding: 112px 0;
  background: var(--paper);
}

.roots-screen {
  padding: 112px 0;
  color: var(--white);
  background: var(--black);
}

.page-hero {
  padding: 96px 0 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97), rgba(5, 5, 5, 0.84)),
    var(--black);
}

.page-hero.warm-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(143, 67, 42, 0.72)),
    var(--black);
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: end;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.page-hero .eyebrow,
.section-heading .eyebrow,
.wide-band .eyebrow,
.roots-screen .eyebrow {
  color: var(--trust);
}

.page-hero .eyebrow.warm,
.section-heading .eyebrow.warm,
.wide-band .eyebrow.warm,
.roots-screen .eyebrow.warm {
  color: var(--warm);
}

.hero-stat-grid,
.metric-grid,
.intro-grid,
.path-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-stat,
.intro-panel,
.path-card,
.service-card,
.metric-card {
  border-radius: 8px;
  border: 1px solid var(--line);
}

.hero-stat {
  min-height: 140px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-stat strong,
.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.72);
}

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

.intro-panel,
.path-card,
.service-card,
.metric-card {
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-panel,
.warm-card {
  border-color: rgba(199, 109, 74, 0.28);
  background: var(--warm-soft);
}

.path-card {
  color: var(--ink);
  min-height: 250px;
}

.path-card:hover,
.path-card:focus-visible {
  border-color: var(--trust);
  transform: translateY(-2px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.split-screen {
  padding: 112px 0;
  background: var(--white);
}

.split-screen .hero-lede {
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 18px;
  border-left: 4px solid var(--trust);
  background: var(--paper);
  border-radius: 8px;
}

.feature-list.warm-list li {
  border-left-color: var(--warm);
}

.wide-band {
  padding: 96px 0;
  color: var(--white);
  background: var(--black);
}

.wide-band .section-heading p,
.wide-band p {
  color: rgba(255, 255, 255, 0.72);
}

.metric-grid {
  margin-top: 30px;
}

.metric-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.metric-card strong {
  color: var(--trust);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading p {
  font-size: 1.05rem;
}

.roots-screen .section-heading p,
.roots-screen .focus-block p,
.process-list {
  color: rgba(255, 255, 255, 0.72);
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 22px;
}

.segmented {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter-button {
  min-width: 112px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.filter-button.is-active {
  color: var(--black);
  background: var(--trust-soft);
  font-weight: 850;
}

.search-box {
  display: grid;
  gap: 8px;
  min-width: 280px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.search-box input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.search-box input {
  min-height: 50px;
  padding: 0 14px;
}

.search-box input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--trust);
  box-shadow: 0 0 0 4px rgba(47, 183, 160, 0.18);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.listing-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.listing-card[hidden] {
  display: none;
}

.listing-media {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 172px;
  padding: 20px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.listing-media::before,
.listing-media::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.56);
}

.vehicle-media::before {
  left: 32px;
  right: 28px;
  bottom: 46px;
  height: 44px;
  border-radius: 36px 48px 10px 10px;
}

.vehicle-media::after {
  left: 58px;
  bottom: 25px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 172px 0 0 rgba(5, 5, 5, 0), 172px 0 0 -2px rgba(255, 255, 255, 0.56);
}

.vehicle-media.sedan::before {
  right: 54px;
}

.vehicle-media.pickup::before {
  right: 24px;
  border-radius: 24px 16px 10px 10px;
}

.vehicle-media.moto::before {
  left: 62px;
  right: 72px;
  bottom: 64px;
  height: 24px;
  border-radius: 28px 34px 14px 14px;
  transform: skewX(-12deg);
}

.vehicle-media.moto::after {
  left: 72px;
  bottom: 26px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: 134px 0 0 -2px rgba(255, 255, 255, 0.56);
}

.property-media {
  background: linear-gradient(135deg, #0f1514, #2a1b16);
}

.property-media::before {
  left: 42px;
  bottom: 36px;
  width: 140px;
  height: 92px;
  border-radius: 8px 8px 0 0;
}

.property-media::after {
  left: 66px;
  bottom: 128px;
  width: 92px;
  height: 92px;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.property-media.lot::before {
  width: 180px;
  height: 58px;
  border-style: dashed;
  border-radius: 8px;
}

.property-media span {
  background: var(--warm);
}

.property-media.lot::after {
  display: none;
}

.property-media.apartment::before {
  width: 120px;
  height: 118px;
}

.property-media.apartment::after {
  left: 84px;
  bottom: 54px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.56);
  transform: none;
  box-shadow: 34px 0 0 -2px rgba(255, 255, 255, 0.56), 68px 0 0 -2px rgba(255, 255, 255, 0.56), 0 34px 0 -2px rgba(255, 255, 255, 0.56), 34px 34px 0 -2px rgba(255, 255, 255, 0.56), 68px 34px 0 -2px rgba(255, 255, 255, 0.56);
}

.property-media.finca::before {
  width: 168px;
  height: 82px;
}

.property-media.finca::after {
  left: 58px;
  bottom: 116px;
  width: 102px;
  height: 102px;
}

.listing-media span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--black);
  background: var(--trust);
  border-radius: 8px;
  font-weight: 900;
}

.listing-body {
  padding: 22px;
}

.listing-kicker {
  margin-bottom: 8px;
  color: var(--trust-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.listing-meta {
  min-height: 54px;
  color: var(--muted);
  line-height: 1.55;
}

.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.listing-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  color: var(--trust-dark);
  border: 1px solid rgba(47, 183, 160, 0.35);
  border-radius: 8px;
  font-weight: 850;
}

.empty-state {
  margin: 26px 0 0;
  padding: 18px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.roots-layout {
  display: grid;
  gap: 36px;
}

.roots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.focus-block {
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.block-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  color: var(--black);
  background: var(--trust);
  border-radius: 8px;
  font-weight: 900;
}

.warm-card .block-number,
.trust-panel .block-number {
  background: var(--warm);
}

.process-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  padding: 30px;
  background: rgba(47, 183, 160, 0.12);
  border: 1px solid rgba(47, 183, 160, 0.38);
  border-radius: 8px;
}

.process-band.warm-process {
  background: rgba(199, 109, 74, 0.14);
  border-color: rgba(199, 109, 74, 0.4);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding-left: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-number {
  display: inline-flex;
  margin-top: 20px;
  color: var(--black);
  font-size: 2rem;
  font-weight: 900;
  border-bottom: 4px solid var(--trust);
}

.contact-options {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-option {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.animated-footer {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.animated-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.72)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.34));
}

.footer-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.footer-line {
  stroke: hsl(172, 68%, 64%);
  stroke-linecap: round;
  stroke-dasharray: 520 840;
  stroke-dashoffset: 0;
  filter: url(#footer-glow);
  animation: footerWave 4.8s linear infinite;
}

.footer-line:nth-of-type(3n) {
  stroke: hsl(17, 56%, 60%);
}

.line-thick {
  stroke-width: 9;
  opacity: 0.52;
}

.line-mid {
  stroke-width: 6;
  opacity: 0.74;
}

.line-thin {
  stroke-width: 4;
  opacity: 0.94;
}

.delay-a {
  animation-delay: -1.2s;
}

.delay-b {
  animation-delay: -2.4s;
}

.delay-c {
  animation-delay: -3.2s;
}

@keyframes footerWave {
  100% {
    stroke-dashoffset: -1380;
  }
}

.footer-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  min-height: 460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(150px, 0.75fr) minmax(190px, 0.9fr) minmax(150px, 0.7fr);
  align-items: start;
  gap: 32px;
  padding: 92px 0 34px;
}

.footer-brand {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 900;
}

.footer-logo {
  display: block;
  width: 250px;
  height: 54px;
  margin-bottom: 16px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.footer-content h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.86rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.animated-footer .footer-content p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover,
.footer-whatsapp:hover,
.footer-links a:focus-visible,
.footer-whatsapp:focus-visible {
  color: var(--white);
  background: rgba(47, 183, 160, 0.28);
}

.footer-whatsapp {
  color: var(--black);
  background: var(--trust);
  font-weight: 900;
  white-space: nowrap;
}

.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  list-style: none;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 20px;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-layout,
  .page-hero-layout,
  .contact-layout,
  .process-band,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding-top: 54px;
  }

  .hero-visual {
    order: -1;
  }

  .car-banner {
    min-height: 230px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .inventory-grid,
  .roots-grid,
  .hero-stat-grid,
  .metric-grid,
  .service-grid,
  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy {
    position: static;
  }

  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .footer-content > div:first-child,
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: auto;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 4px;
    overflow-x: visible;
  }

  .main-nav a {
    flex: 1 1 auto;
    padding: 8px 10px;
    text-align: center;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 166px;
    height: 36px;
  }

  .nav-contact {
    padding: 9px 12px;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero-screen {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-layout {
    gap: 16px;
    padding: 26px 0 40px;
  }

  .car-banner {
    min-height: 180px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .search-box,
  .segmented {
    width: 100%;
  }

  .filter-button {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
  }

  .inventory-grid,
  .roots-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .catalog-screen,
  .roots-screen,
  .contact-screen,
  .intro-screen,
  .home-path-screen,
  .split-screen,
  .wide-band,
  .page-hero {
    padding: 78px 0;
  }

  .intro-grid,
  .hero-stat-grid,
  .metric-grid,
  .service-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .listing-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .listing-footer a {
    width: 100%;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-number {
    font-size: 1.55rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .footer-content > div:first-child,
  .footer-bottom {
    grid-column: auto;
  }

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

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

  .car-banner #stream,
  .car-banner .rim-pattern,
  .car-banner #streak,
  .footer-line {
    animation: none;
  }
}
