@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700;800&family=Manrope:wght@500;700;800&display=swap');

:root {
  --ink: #071126;
  --muted: #526072;
  --line: rgba(7, 17, 38, 0.12);
  --soft: #f4f8fa;
  --white: #ffffff;
  --aqua: #66c4d9;
  --aqua-deep: #1b93ad;
  --blue: #0d355f;
  --blue-soft: #ddecf2;
  --lime: #b9d96a;
  --sand: #f5efe3;
  --orange: #f28b51;
  --shadow: 0 24px 80px rgba(7, 17, 38, 0.16);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--ink);
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  display: block;
  max-width: min(32vw, 320px);
  overflow-wrap: anywhere;
  line-height: 1.02;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links a:hover {
  color: var(--aqua-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  font-weight: 900;
  color: var(--blue);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7, 17, 38, 0.18);
}

.btn-aqua {
  background: var(--aqua);
  color: var(--ink);
}

.btn-orange {
  background: var(--orange);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.menu-toggle span {
  top: 22px;
}

.menu-toggle::before {
  top: 15px;
}

.menu-toggle::after {
  top: 29px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(102, 196, 217, 0.18), rgba(185, 217, 106, 0.14)),
    radial-gradient(circle at 80% 8%, rgba(242, 139, 81, 0.18), transparent 28%),
    var(--soft);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 17, 38, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 38, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -20%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.72), transparent);
  transform: skewX(-16deg);
  animation: cleanSweep 5.8s ease-in-out infinite;
  opacity: 0.8;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  padding: 66px 0 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", "Instrument Sans", sans-serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 8vw, 7.3rem);
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.25rem, 5.5vw, 5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
}

.hero-copy p {
  max-width: 690px;
  margin: 24px 0 0;
  color: #334155;
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  min-width: 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 760px;
}

.trust-row span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.quote-card {
  position: relative;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 22px;
  box-shadow: var(--shadow);
  animation: cardFloat 6.5s ease-in-out infinite;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.quote-logo {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 22px;
}

.quote-logo img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  animation: logoPop 4.5s ease-in-out infinite;
}

.quote-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin-bottom: 16px;
}

.quick-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  display: flex;
  gap: 10px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.84);
  overflow-wrap: anywhere;
}

.quick-list li::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--aqua);
}

.section {
  padding: clamp(64px, 9vw, 116px) 0;
}

.section-soft {
  background: var(--soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.78fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid,
.area-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.area-card,
.proof-card,
.step-card {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.area-card:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 196, 217, 0.72);
  box-shadow: 0 18px 42px rgba(7, 17, 38, 0.1);
}

.service-card::before,
.area-card::before,
.proof-card::before,
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(102, 196, 217, 0.16), transparent);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.service-card,
.area-card,
.proof-card,
.step-card {
  position: relative;
  overflow: hidden;
}

.service-card:hover::before,
.area-card:hover::before,
.proof-card:hover::before,
.step-card:hover::before {
  transform: translateX(130%);
}

.service-card.primary {
  background: var(--ink);
  color: var(--white);
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.primary .tag {
  background: var(--aqua);
  color: var(--ink);
}

.service-card p,
.area-card p,
.proof-card p,
.step-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.primary p {
  color: rgba(255, 255, 255, 0.74);
}

.arrow {
  margin-top: 24px;
  font-weight: 900;
  color: var(--aqua-deep);
}

.primary .arrow {
  color: var(--aqua);
}

.process {
  background: var(--ink);
  color: var(--white);
}

.process .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

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

.step-card {
  min-height: 260px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.step-card strong {
  color: var(--aqua);
  font-size: 0.88rem;
}

.step-card p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.checklist {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.checklist li {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 700;
}

.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 4px;
  background: var(--aqua);
  box-shadow: inset 0 0 0 5px var(--blue);
  flex: 0 0 auto;
}

.cta-band {
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(102, 196, 217, 0.22), rgba(185, 217, 106, 0.18)),
    var(--ink);
  color: var(--white);
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-band p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 780px;
}

.page-hero {
  background: var(--soft);
  padding: 78px 0 44px;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb span + span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(82, 96, 114, 0.55);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.75fr);
  gap: 34px;
  align-items: end;
}

.page-hero-grid > *,
.hero-grid > *,
.content-grid > *,
.split > * {
  min-width: 0;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.page-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
  overflow-wrap: anywhere;
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.mini-nav a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 22px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(22px, 4vw, 34px);
}

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

.panel.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.faq {
  display: grid;
  gap: 8px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
}

.footer .brand {
  color: var(--white);
  margin-bottom: 14px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer h4 {
  margin: 0 0 12px;
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.88rem;
}

label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.mobile-sticky {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.service-grid > .reveal:nth-child(2),
.area-grid > .reveal:nth-child(2),
.step-grid > .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.service-grid > .reveal:nth-child(3),
.area-grid > .reveal:nth-child(3),
.step-grid > .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.service-grid > .reveal:nth-child(4),
.area-grid > .reveal:nth-child(4),
.step-grid > .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.sparkle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sparkle-field span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(102, 196, 217, 0.82);
  box-shadow: 0 0 22px rgba(102, 196, 217, 0.72);
  animation: bubbleRise 8s linear infinite;
}

.sparkle-field span:nth-child(1) { left: 8%; bottom: -12px; animation-delay: 0s; }
.sparkle-field span:nth-child(2) { left: 24%; bottom: -12px; animation-delay: 1.4s; transform: scale(0.72); }
.sparkle-field span:nth-child(3) { left: 48%; bottom: -12px; animation-delay: 2.6s; transform: scale(1.25); }
.sparkle-field span:nth-child(4) { left: 72%; bottom: -12px; animation-delay: 0.8s; transform: scale(0.85); }
.sparkle-field span:nth-child(5) { left: 88%; bottom: -12px; animation-delay: 3.8s; transform: scale(1.08); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.74);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.owner-section {
  position: relative;
  overflow: hidden;
}

.owner-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 20%, rgba(102, 196, 217, 0.18), transparent 28%),
    var(--white);
  padding: clamp(18px, 4vw, 42px);
  box-shadow: 0 22px 70px rgba(7, 17, 38, 0.08);
}

.owner-photo-wrap {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-soft), rgba(185, 217, 106, 0.3));
  overflow: hidden;
}

.owner-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: calc(var(--radius) - 2px);
}

.owner-photo {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 104%;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 24px 30px rgba(7, 17, 38, 0.2));
  animation: portraitSettle 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.owner-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.owner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.owner-pills span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

@keyframes cleanSweep {
  0%, 18% { transform: translateX(-120%) skewX(-16deg); opacity: 0; }
  36%, 58% { opacity: 0.72; }
  76%, 100% { transform: translateX(340%) skewX(-16deg); opacity: 0; }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes logoPop {
  0%, 100% { transform: scale(1) rotate(0deg); }
  45% { transform: scale(1.04) rotate(-2deg); }
}

@keyframes bubbleRise {
  0% { transform: translateY(0) scale(0.7); opacity: 0; }
  16% { opacity: 0.9; }
  100% { transform: translateY(-120vh) scale(1.45); opacity: 0; }
}

@keyframes portraitSettle {
  from { transform: translateY(24px) scale(1.04); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 78px 16px auto;
    z-index: 49;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.18s ease;
  }

  body.menu-open .mobile-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu a {
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 900;
  }

  .hero-grid,
  .section-head,
  .split,
  .page-hero-grid,
  .content-grid,
  .cta-band,
  .owner-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 42px;
  }

  .service-grid,
  .area-grid,
  .proof-grid,
  .step-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .owner-photo-wrap {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-inner {
    min-height: 68px;
  }

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

  .brand span {
    max-width: calc(100vw - 104px);
    font-size: 1.05rem;
  }

  h1 {
    max-width: 8.8ch;
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .trust-row,
  .stat-strip,
  .service-grid,
  .area-grid,
  .proof-grid,
  .step-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .cta-band .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .service-card,
  .area-card,
  .proof-card,
  .step-card {
    min-height: 190px;
  }

  .mini-nav {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 4px;
  }

  .mini-nav a {
    flex: 0 1 auto;
  }

  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: flex;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .mobile-sticky.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .footer {
    padding-bottom: 98px;
  }

  .owner-photo-wrap {
    min-height: 390px;
  }

}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
