/* ==========================================================================
   SasteHome — main stylesheet
   Theme: true brand navy + gold, sampled from the SasteHome logo
   Sections: tokens, base, buttons, navbar, hero banner, trust, sections,
   property cards, features, locations, steps, about, form, cta,
   testimonials, faq, footer, mobile bar, utilities, motion
   ========================================================================== */

:root {
  /* Brand colours — sampled directly from the SasteHome logo */
  --sh-navy: #0f2846;        /* deep navy from the roof / wordmark */
  --sh-navy-deep: #081729;   /* darkest navy — footer / deepest bg */
  --sh-blue: #1d4ed8;        /* bright blue — hover / interactive accent */
  --sh-gold: #e2a125;        /* warm gold from the key / "Home" wordmark */
  --sh-gold-dark: #b87f1c;
  --sh-whatsapp: #128c47;    /* WhatsApp brand green — left as-is */

  --sh-bg: #ffffff;
  --sh-bg-soft: #f6f7fa;
  --sh-border: #e5e8ef;
  --sh-text: #16203a;
  --sh-muted: #5c6780;

  /* 8px spacing scale */
  --sh-s1: 8px; --sh-s2: 16px; --sh-s3: 24px; --sh-s4: 32px;
  --sh-s5: 40px; --sh-s6: 56px; --sh-s7: 80px;

  --sh-radius: 16px;
  --sh-radius-sm: 10px;
  --sh-shadow-sm: 0 2px 10px rgba(15, 40, 70, .07);
  --sh-shadow: 0 12px 34px rgba(15, 40, 70, .12);
  --sh-shadow-lg: 0 22px 60px rgba(15, 40, 70, .18);
  --sh-shadow-gold: 0 10px 26px rgba(226, 161, 37, .30);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--sh-text);
  background: var(--sh-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -.02em; line-height: 1.2; color: var(--sh-navy); }
p { color: var(--sh-muted); }
img { max-width: 100%; height: auto; }
.container { max-width: 1280px; }

a { color: var(--sh-blue); }
a:hover { color: var(--sh-navy); }

::selection { background: var(--sh-gold); color: #fff; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--sh-navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* Gradient accent underline under every section heading */
.sh-section-head h2, #about h2 { position: relative; display: inline-block; }
.sh-section-head h2::after, #about h2::after {
  content: ""; display: block; height: 4px; width: 56px; margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sh-gold), var(--sh-blue));
}
.sh-section-head { display: flex; flex-direction: column; align-items: center; }
#about h2::after { margin-inline: 0; }

/* ---------- Buttons ---------- */
.btn { font-weight: 700; border-radius: 999px; padding: .65rem 1.35rem; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: .8rem 1.6rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }

.btn-sh-primary { background: var(--sh-navy); color: #fff; border: 1px solid var(--sh-navy); }
.btn-sh-primary:hover, .btn-sh-primary:focus { background: var(--sh-blue); border-color: var(--sh-blue); color: #fff; box-shadow: var(--sh-shadow-sm); }

.btn-sh-gold { background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-dark)); color: #17202f; border: 1px solid var(--sh-gold-dark); }
.btn-sh-gold:hover, .btn-sh-gold:focus { background: linear-gradient(135deg, var(--sh-gold-dark), var(--sh-gold)); border-color: var(--sh-gold-dark); color: #17202f; box-shadow: var(--sh-shadow-gold); }

.btn-sh-outline { background: transparent; color: var(--sh-navy); border: 1.5px solid var(--sh-navy); }
.btn-sh-outline:hover, .btn-sh-outline:focus { background: var(--sh-navy); color: #fff; }

.btn-sh-outline-light { background: rgba(255, 255, 255, .1); color: #fff; border: 1.5px solid rgba(255, 255, 255, .6); backdrop-filter: blur(2px); }
.btn-sh-outline-light:hover, .btn-sh-outline-light:focus { background: #fff; color: var(--sh-navy); }

.btn-sh-whatsapp { background: var(--sh-whatsapp); color: #fff; border: 1px solid var(--sh-whatsapp); }
.btn-sh-whatsapp:hover, .btn-sh-whatsapp:focus { background: #0e7038; color: #fff; }

/* ---------- Navbar ---------- */
.sh-navbar {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(140%) blur(8px);
  padding: .55rem 0;
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, padding .25s ease;
}
.sh-navbar.is-scrolled { box-shadow: var(--sh-shadow-sm); border-bottom-color: var(--sh-border); padding: .3rem 0; }
.sh-logo { height: 88px; width: auto; transition: height .25s ease; }
.sh-navbar.is-scrolled .sh-logo { height: 72px; }
.sh-navbar .nav-link { color: var(--sh-navy); font-weight: 600; padding: .5rem .9rem; border-radius: 999px; }
.sh-navbar .nav-link:hover, .sh-navbar .nav-link:focus { color: var(--sh-blue); background: var(--sh-bg-soft); }
.navbar-toggler { border-color: var(--sh-border); }

@media (max-width: 991.98px) {
  .sh-navbar .navbar-collapse { padding: var(--sh-s2) 0 var(--sh-s1); }
  .sh-navbar .nav-link { padding: .7rem .5rem; }
  .sh-logo { height: 52px; }
}

/* ---------- Hero banner (rotating image carousel) ---------- */
.sh-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: calc(88px + var(--sh-s6)) 0 var(--sh-s6);
  color: #fff;
  overflow: hidden;
  background: var(--sh-navy-deep); /* shows briefly while the first slide loads */
}
.sh-hero-carousel,
.sh-hero-carousel .carousel-inner,
.sh-hero-carousel .carousel-item {
  position: absolute; inset: 0; height: 100%;
}
.sh-hero-carousel .carousel-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.02);
  opacity: .72;
  filter: brightness(.72) saturate(.9);
}
.sh-hero-carousel .carousel-item.active img { animation: sh-ken-burns 9s ease-out forwards; }
@keyframes sh-ken-burns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
/* Readability scrim: navy gradient from the bottom + a light top fade for the navbar */
.sh-hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(8, 23, 41, .92) 0%, rgba(8, 23, 41, .55) 42%, rgba(8, 23, 41, .28) 68%, rgba(8, 23, 41, .38) 100%),
    linear-gradient(160deg, rgba(15, 40, 70, .35) 0%, transparent 55%);
}
.sh-hero-content { position: relative; z-index: 2; width: 100%; }
.sh-hero-indicators { z-index: 3; margin-bottom: 1.75rem; }
.sh-hero-indicators [data-bs-target] {
  width: 26px; height: 3px; border-radius: 999px; background-color: rgba(255, 255, 255, .45);
  opacity: 1; border: none; margin: 0 4px;
}
.sh-hero-indicators .active { background-color: var(--sh-gold); }

.sh-hero h1, .sh-hero h2 { color: #fff; }
.sh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: #fff;
  background: rgba(226, 161, 37, .25);
  border: 1.5px solid rgba(226, 161, 37, .8);
  box-shadow: 0 8px 24px rgba(8, 23, 41, .22);
  padding: 8px 16px; border-radius: 999px; margin-bottom: var(--sh-s3);
}
.sh-eyebrow i { color: var(--sh-gold); }
.sh-hero-title {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.055em;
  margin-bottom: var(--sh-s2);
  color: #f9fbff;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .32);
}
.sh-hero-sub {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 56ch;
  margin-bottom: var(--sh-s4);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .25);
}

/* Search box */
.sh-searchbox {
  background: rgba(255, 255, 255, .97); border: 1px solid var(--sh-border); border-radius: var(--sh-radius);
  box-shadow: var(--sh-shadow-lg); padding: var(--sh-s3); margin-top: var(--sh-s5);
  border-top: 3px solid var(--sh-gold);
}
.sh-searchbox .form-label { font-weight: 700; font-size: .85rem; color: var(--sh-navy); margin-bottom: 6px; }
.form-control, .form-select { border-radius: var(--sh-radius-sm); border-color: var(--sh-border); padding: .7rem .9rem; }
.form-control:focus, .form-select:focus { border-color: var(--sh-blue); box-shadow: 0 0 0 .2rem rgba(29, 78, 216, .15); }

@media (max-width: 767.98px) {
  .sh-hero { min-height: 100vh; padding: calc(80px + var(--sh-s4)) 0 var(--sh-s5); align-items: flex-end; }
}

/* ---------- Trust strip ---------- */
.sh-trust { background: var(--sh-bg-soft); border-bottom: 1px solid var(--sh-border); padding: var(--sh-s4) 0; }
.sh-trust-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--sh-navy); height: 100%; }
.sh-trust-item i { font-size: 1.5rem; color: var(--sh-gold); flex: none; }
.sh-trust-item span { font-size: .95rem; line-height: 1.35; }

/* ---------- Sections ---------- */
.sh-section { padding: var(--sh-s7) 0; }
.sh-section-muted { background: var(--sh-bg-soft); }
.sh-section-head { max-width: 720px; margin: 0 auto var(--sh-s5); text-align: center; }
.sh-section-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 12px; }
.sh-section-head p { margin: 0; font-size: 1.02rem; }

@media (max-width: 767.98px) {
  .sh-section { padding: var(--sh-s6) 0; }
}

/* ---------- Filters ---------- */
.sh-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: var(--sh-s4); }
.sh-filter {
  border: 1.5px solid var(--sh-border); background: #fff; color: var(--sh-navy);
  font-weight: 700; font-size: .9rem; padding: .5rem 1.1rem; border-radius: 999px;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.sh-filter:hover { border-color: var(--sh-navy); }
.sh-filter.is-active { background: var(--sh-navy); border-color: var(--sh-navy); color: #fff; box-shadow: var(--sh-shadow-sm); }

/* ---------- Property cards ---------- */
.sh-card {
  height: 100%; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--sh-border); border-radius: var(--sh-radius);
  overflow: hidden; box-shadow: var(--sh-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.sh-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sh-gold), var(--sh-blue));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.sh-card:hover { transform: translateY(-6px); box-shadow: var(--sh-shadow); border-color: rgba(226, 161, 37, .4); }
.sh-card:hover::before { transform: scaleX(1); }
.sh-card-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sh-bg-soft); }
.sh-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.sh-card:hover .sh-card-media img { transform: scale(1.06); }
.sh-card-emoji {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; line-height: 1;
  background: linear-gradient(160deg, rgba(226, 161, 37, .16), rgba(15, 40, 70, .1));
  transition: transform .5s ease;
}
.sh-card:hover .sh-card-emoji { transform: scale(1.08); }
.sh-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(15, 40, 70, .92); color: #fff;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.sh-card-body { padding: var(--sh-s3); display: flex; flex-direction: column; flex: 1; }
.sh-card-title { font-size: 1.12rem; margin-bottom: 6px; }
.sh-card-loc { font-size: .9rem; color: var(--sh-muted); margin-bottom: 10px; }
.sh-card-loc i { color: var(--sh-gold); }
.sh-card-desc { font-size: .92rem; margin-bottom: var(--sh-s2); }
.sh-card-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding-top: var(--sh-s2); margin-top: auto; border-top: 1px solid var(--sh-border);
}
.sh-price { font-weight: 800; font-size: 1.15rem; color: var(--sh-navy); display: flex; flex-direction: column; }
.sh-price small { font-size: .68rem; font-weight: 600; color: var(--sh-muted); }
.sh-size { font-size: .88rem; color: var(--sh-muted); font-weight: 600; }
.sh-card-actions { display: flex; gap: 10px; margin-top: var(--sh-s2); }

/* ---------- Feature cards ---------- */
.sh-feature { height: 100%; background: #fff; border: 1px solid var(--sh-border); border-radius: var(--sh-radius); padding: var(--sh-s3); box-shadow: var(--sh-shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.sh-feature:hover { transform: translateY(-4px); box-shadow: var(--sh-shadow); }
.sh-feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: var(--sh-s2);
  background: rgba(226, 161, 37, .16); color: var(--sh-gold-dark); font-size: 1.5rem;
}
.sh-feature h3 { font-size: 1.08rem; margin-bottom: 8px; }
.sh-feature p { font-size: .93rem; margin: 0; }

/* ---------- Location cards ---------- */
.sh-loc { display: block; position: relative; border-radius: var(--sh-radius); overflow: hidden; box-shadow: var(--sh-shadow-sm); text-decoration: none; aspect-ratio: 4 / 3; }
.sh-loc img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.sh-loc:hover img { transform: scale(1.07); }
.sh-loc-body {
  position: absolute; inset: auto 0 0 0; padding: var(--sh-s3);
  background: linear-gradient(to top, rgba(8, 23, 41, .92), rgba(8, 23, 41, 0));
  color: #fff;
}
.sh-loc-body h3 { color: #fff; font-size: 1.2rem; margin-bottom: 2px; }
.sh-loc-body span { font-size: .88rem; font-weight: 700; color: var(--sh-gold); }
.sh-loc:hover .sh-loc-body span i { transform: translateX(4px); }
.sh-loc-body span i { display: inline-block; transition: transform .2s ease; }

/* ---------- Steps ---------- */
.sh-steps { position: relative; }
.sh-step { height: 100%; background: #fff; border: 1px solid var(--sh-border); border-radius: var(--sh-radius); padding: var(--sh-s3); position: relative; }
.sh-step-num { display: inline-block; font-size: 1.6rem; font-weight: 800; color: var(--sh-gold); margin-bottom: 6px; }
.sh-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.sh-step p { font-size: .92rem; margin: 0; }
@media (min-width: 992px) {
  .sh-steps > [class*="col-"]:not(:last-child) .sh-step::after {
    content: ""; position: absolute; top: 50%; right: -28px; width: 32px; height: 2px;
    background: linear-gradient(90deg, var(--sh-gold), rgba(226, 161, 37, .15));
  }
}

/* ---------- About ---------- */
.sh-about-media { border-radius: var(--sh-radius); overflow: hidden; box-shadow: var(--sh-shadow); aspect-ratio: 4 / 3; }
.sh-about-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
#about h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: var(--sh-s2); }
.sh-parent-note {
  margin-top: var(--sh-s3); padding: var(--sh-s2) var(--sh-s3);
  border-left: 3px solid var(--sh-gold); background: var(--sh-bg-soft); border-radius: 0 var(--sh-radius-sm) var(--sh-radius-sm) 0;
  font-size: .95rem;
}
.sh-parent-note a { font-weight: 700; white-space: nowrap; }

/* ---------- Lead form ---------- */
.sh-formcard { background: #fff; border: 1px solid var(--sh-border); border-radius: var(--sh-radius); box-shadow: var(--sh-shadow); padding: var(--sh-s5); border-top: 3px solid var(--sh-gold); }
.sh-formcard .form-label { font-weight: 700; font-size: .88rem; color: var(--sh-navy); }
.sh-form-status { font-weight: 600; font-size: .95rem; }
.sh-form-status.is-success { color: var(--sh-whatsapp); }
.sh-form-status.is-error { color: #c02626; }
@media (max-width: 575.98px) { .sh-formcard { padding: var(--sh-s3); } }

/* ---------- CTA band ---------- */
.sh-cta { padding: var(--sh-s7) 0; background: linear-gradient(135deg, var(--sh-navy) 0%, var(--sh-navy-deep) 130%); color: #fff; position: relative; overflow: hidden; }
.sh-cta::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px 260px at 90% 10%, rgba(226, 161, 37, .22), transparent 60%);
}
.sh-cta > .container { position: relative; z-index: 1; }
.sh-cta h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.sh-cta p { color: rgba(255, 255, 255, .82); margin-bottom: var(--sh-s3); }

/* ---------- Testimonials ---------- */
.sh-testimonial { height: 100%; background: #fff; border: 1px solid var(--sh-border); border-radius: var(--sh-radius); padding: var(--sh-s3); box-shadow: var(--sh-shadow-sm); position: relative; }
.sh-testimonial::before {
  content: "\201C"; position: absolute; top: 6px; right: 18px;
  font-size: 3.2rem; font-weight: 800; line-height: 1; color: rgba(226, 161, 37, .18);
  font-family: Georgia, serif;
}
.sh-stars { color: var(--sh-gold); letter-spacing: 2px; margin-bottom: 10px; }
.sh-testimonial blockquote { font-size: 1rem; color: var(--sh-text); margin-bottom: var(--sh-s2); position: relative; z-index: 1; }
.sh-tm-name { font-weight: 700; color: var(--sh-navy); margin-bottom: 0; }
.sh-tm-role { font-size: .85rem; margin: 0; }

/* ---------- FAQ ---------- */
.sh-accordion .accordion-item { border: 1px solid var(--sh-border); border-radius: var(--sh-radius-sm) !important; margin-bottom: 12px; overflow: hidden; background: #fff; }
.sh-accordion .accordion-button { font-weight: 700; color: var(--sh-navy); background: #fff; }
.sh-accordion .accordion-button:not(.collapsed) { background: var(--sh-bg-soft); color: var(--sh-navy); box-shadow: none; }
.sh-accordion .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(29, 78, 216, .15); }
.sh-accordion .accordion-body { color: var(--sh-muted); }

/* ---------- Footer ---------- */
.sh-footer { background: var(--sh-navy-deep); color: rgba(255, 255, 255, .78); padding: var(--sh-s7) 0 var(--sh-s3); }
.sh-logo-footer { background: #fff; border-radius: 12px; padding: 8px 14px; height: 72px; }
.sh-footer-desc { color: rgba(255, 255, 255, .7); font-size: .93rem; margin-top: var(--sh-s2); max-width: 42ch; }
.sh-footer-h { color: #fff; font-size: 1rem; margin-bottom: var(--sh-s2); }
.sh-footer-list { list-style: none; padding: 0; margin: 0; }
.sh-footer-list li { margin-bottom: 10px; font-size: .93rem; }
.sh-footer-list a, .sh-footer-contact span { color: rgba(255, 255, 255, .78); text-decoration: none; }
.sh-footer-list a:hover { color: var(--sh-gold); }
.sh-footer-contact li { display: flex; align-items: center; gap: 10px; }
.sh-footer-contact i { color: var(--sh-gold); }
.sh-footer-bottom {
  margin-top: var(--sh-s5); padding-top: var(--sh-s3); border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 10px var(--sh-s3); align-items: center; justify-content: space-between;
  font-size: .88rem;
}
.sh-footer-bottom a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.sh-footer-bottom a:hover { color: var(--sh-gold); }
.sh-parent-line a { color: var(--sh-gold); font-weight: 700; }

/* ---------- Mobile sticky CTA ---------- */
.sh-mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1035;
  display: flex; background: #fff; border-top: 1px solid var(--sh-border);
  box-shadow: 0 -6px 20px rgba(15, 40, 70, .12);
  padding-bottom: env(safe-area-inset-bottom);
}
.sh-mobilebar a {
  flex: 1; text-align: center; padding: 10px 4px; text-decoration: none;
  color: var(--sh-navy); font-weight: 700; font-size: .78rem;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  min-height: 56px; justify-content: center;
  transition: background-color .18s ease;
}
.sh-mobilebar a:active { background: var(--sh-bg-soft); }
.sh-mobilebar a i { font-size: 1.15rem; color: var(--sh-gold-dark); }
.sh-mobilebar a + a { border-left: 1px solid var(--sh-border); }
@media (max-width: 991.98px) { body { padding-bottom: 62px; } }

/* ---------- Back to top ---------- */
.sh-top {
  position: fixed; right: 18px; bottom: 76px; z-index: 1030;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--sh-navy); color: #fff; box-shadow: var(--sh-shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s, background-color .18s ease;
}
.sh-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.sh-top:hover { background: var(--sh-blue); }
@media (min-width: 992px) { .sh-top { bottom: 24px; } }

/* ---------- Scroll reveal ---------- */
[data-animate] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-animate] { opacity: 1; transform: none; }
  .sh-hero-carousel .carousel-item.active img { animation: none; }
}
