:root {
  --ink: #161818;
  --ink-soft: #313635;
  --muted: #68716f;
  --paper: #f6f8f4;
  --paper-deep: #e7efea;
  --white: #ffffff;
  --sea: #0b6f78;
  --sea-deep: #064c54;
  --coral: #ee633b;
  --coral-deep: #c84428;
  --mint: #cce5db;
  --line: rgba(22, 24, 24, 0.14);
  --line-light: rgba(255, 255, 255, 0.3);
  --shadow: 0 26px 80px rgba(12, 36, 39, 0.22);
  --radius: 8px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Trebuchet MS", sans-serif;
  --section-sea: url("assets/photos/section-sea-bg.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--coral);
  color: var(--white);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 20, 24, 0.84) 0%, rgba(3, 20, 24, 0.5) 48%, rgba(3, 20, 24, 0.1) 100%),
    linear-gradient(180deg, rgba(3, 20, 24, 0.48) 0%, rgba(3, 20, 24, 0.12) 34%, rgba(3, 20, 24, 0.8) 100%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.015);
  animation: heroZoom 1400ms ease-out both;
}

.topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding-top: 10px;
}

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

.brand-mark {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-weight: 800;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  text-transform: uppercase;
}

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

.nav-link,
.button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-link svg,
.button svg,
.copy-button svg,
.text-link svg,
.feature-card svg,
.mobile-cta svg,
.lightbox button svg,
.scroll-cue svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  stroke-width: 2.1;
}

.nav-link {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.nav-link-primary {
  border-color: transparent;
  background: var(--coral);
  box-shadow: 0 14px 34px rgba(238, 99, 59, 0.28);
}

.topbar .nav-link {
  background: rgba(255, 255, 255, 0.1);
}

.topbar .nav-link-primary,
.hero .button-primary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(238, 99, 59, 0.62);
  box-shadow: 0 18px 40px rgba(238, 99, 59, 0.18);
  backdrop-filter: blur(12px) saturate(1.1);
}

.topbar .nav-link-primary:hover,
.hero .button-primary:hover {
  background: rgba(238, 99, 59, 0.76);
}

.nav-link:hover,
.button:hover,
.copy-button:hover,
.text-link:hover,
.mobile-cta a:hover {
  transform: translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 64px;
}

.eyebrow,
.section-kicker,
.strip-label {
  display: none;
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.gallery-heading h2,
.booking-copy h2,
.comfort-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.96;
}

.hero h1 {
  max-width: 820px;
  font-size: 54px;
}

.lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.button {
  min-width: 188px;
  padding: 0 20px;
}

.button-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(238, 99, 59, 0.32);
}

.button-primary:hover {
  background: var(--coral-deep);
}

.button-ghost {
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero .button-ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(1.1);
}

.button-outline {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--sea-deep);
}

.hero-countdown {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: 12px;
  width: min(900px, 100%);
  margin: 20px 0 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(248, 255, 251, 0.84), rgba(204, 239, 229, 0.72));
  box-shadow: 0 20px 48px rgba(3, 50, 58, 0.26);
  backdrop-filter: blur(14px) saturate(1.15);
}

.scroll-cue {
  position: absolute;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 22px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.section,
.gallery,
.booking-section,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.anchor-target {
  height: 0;
}

.countdown-copy {
  min-width: 0;
  padding: 4px 2px;
  text-align: center;
}

.countdown-copy strong {
  display: block;
  font-family: var(--font-body);
  color: var(--sea-deep);
  font-size: 32px;
  font-weight: 900;
  line-height: 0.92;
  text-wrap: balance;
}

.countdown-copy p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

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

.countdown-unit {
  display: grid;
  min-height: 88px;
  place-items: center;
  padding: 10px 6px;
  border: 1px solid rgba(11, 111, 120, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--sea-deep);
  text-align: center;
}

.countdown-unit span {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 900;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.countdown-unit small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.countdown-whatsapp {
  display: none;
}

.intro-section {
  padding: 46px 0 38px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 54px;
  align-items: start;
}

.intro-grid h2,
.gallery-heading h2,
.comfort-heading h2,
.booking-copy h2 {
  color: var(--ink);
  font-size: 44px;
}

.intro-copy {
  display: grid;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 17px;
}

.intro-copy p,
.comfort-heading p,
.booking-copy > p,
.feature-card p {
  margin: 0;
}

.gallery-section {
  position: relative;
  padding: 14px 0 80px;
  isolation: isolate;
}

.mobile-gallery-label {
  display: none;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.gallery-heading h2 {
  max-width: 780px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 8px;
  color: var(--sea-deep);
  font-weight: 900;
}

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

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  cursor: zoom-in;
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(24, 35, 35, 0.12);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 450ms ease,
    opacity 250ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  opacity: 0.92;
  transform: scale(1.045);
}

.gallery-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 24px);
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.gallery-section::before,
.intro-section::before,
.comfort-band::before,
.booking-section::before,
.footer::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.gallery-section::before {
  background:
    linear-gradient(180deg, rgba(246, 248, 244, 0.9), rgba(246, 248, 244, 0.8)),
    var(--section-sea) center 58% / cover no-repeat;
}

.intro-section,
.comfort-band,
.booking-section,
.footer {
  position: relative;
  isolation: isolate;
}

.intro-section::before {
  background:
    linear-gradient(180deg, rgba(246, 248, 244, 0.88), rgba(231, 239, 234, 0.82)),
    var(--section-sea) center 44% / cover no-repeat;
}

.comfort-band {
  padding: 78px 0 86px;
}

.comfort-band::before {
  background:
    linear-gradient(180deg, rgba(204, 229, 219, 0.82), rgba(246, 248, 244, 0.7)),
    var(--section-sea) center 64% / cover no-repeat;
}

.booking-section::before {
  background:
    linear-gradient(180deg, rgba(246, 248, 244, 0.8), rgba(231, 239, 234, 0.72)),
    var(--section-sea) center 50% / cover no-repeat;
}

.footer::before {
  background:
    linear-gradient(180deg, rgba(246, 248, 244, 0.84), rgba(204, 229, 219, 0.78)),
    var(--section-sea) center bottom / cover no-repeat;
}

.gallery-section > *,
.intro-section > *,
.comfort-band > *,
.booking-section > *,
.footer > * {
  position: relative;
  z-index: 1;
}

.comfort-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 44px;
  align-items: end;
}

.comfort-heading p {
  color: var(--ink-soft);
  font-size: 17px;
}

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

.feature-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(11, 111, 120, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px) saturate(1.08);
  box-shadow: 0 18px 46px rgba(11, 111, 120, 0.08);
}

.feature-card svg {
  width: 28px;
  height: 28px;
  color: var(--sea);
}

.feature-card h3 {
  margin: 36px 0 10px;
  font-size: 18px;
  line-height: 1.16;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

.booking-section {
  display: block;
  width: min(760px, calc(100% - 32px));
  padding: 88px 0;
}

.booking-copy {
  min-width: 0;
}

.booking-copy > p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
}

.message-preview {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px) saturate(1.08);
}

.message-preview span {
  display: block;
  color: var(--sea);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.message-preview p {
  margin: 9px 0 14px;
  color: var(--ink-soft);
  font-size: 15px;
}

.copy-button {
  min-height: 42px;
  padding: 0 14px;
  background: var(--sea);
  color: var(--white);
}

.copy-button.is-copied {
  background: var(--ink);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 110px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--sea-deep);
  font-weight: 900;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  display: none;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(246, 248, 244, 0.9);
  box-shadow: 0 18px 55px rgba(12, 36, 39, 0.22);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(115%);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

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

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 9px;
  border-radius: var(--radius);
  font-weight: 900;
}

.mobile-call {
  background: var(--white);
  color: var(--sea-deep);
}

.mobile-whatsapp {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(238, 99, 59, 0.25);
}

.lightbox {
  width: min(1000px, calc(100% - 24px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(5, 12, 13, 0.86);
  backdrop-filter: blur(12px);
}

.lightbox figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  background: var(--ink);
}

.lightbox figcaption {
  padding: 12px 16px;
  background: var(--ink);
  font-weight: 800;
}

.lightbox button {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.lightbox-close {
  top: -56px;
  right: 0;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: -58px;
}

.lightbox-next {
  right: -58px;
}

:focus-visible {
  outline: 3px solid rgba(238, 99, 59, 0.7);
  outline-offset: 3px;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.015);
  }
}

@media (min-width: 900px) {
  .hero-content {
    animation: contentRise 700ms 180ms ease-out both;
  }

  @keyframes contentRise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 84svh;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(3, 20, 24, 0.6) 0%, rgba(3, 20, 24, 0.18) 28%, rgba(3, 20, 24, 0.86) 100%),
      linear-gradient(90deg, rgba(3, 20, 24, 0.62), rgba(3, 20, 24, 0.14));
  }

  .hero-photo img {
    object-position: 62% center;
  }

  .hero h1 {
    max-width: 680px;
    font-size: 46px;
  }

  .lead {
    font-size: 17px;
  }

  .intro-grid,
  .comfort-heading,
  .booking-section {
    grid-template-columns: 1fr;
  }

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

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 250px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .topbar {
    width: min(100% - 24px, 1180px);
    min-height: 52px;
    padding-top: 8px;
  }

  .brand-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    font-size: 11px;
  }

  .brand small {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    align-content: start;
  }

  .hero-content {
    width: min(100% - 24px, 1180px);
    align-self: start;
    padding: 42px 0 10px;
  }

  .eyebrow,
  .section-kicker,
  .strip-label {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 0.98;
  }

  .lead {
    margin-top: 12px;
    font-size: 15px;
  }

  .hero-actions {
    display: none;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .hero-countdown {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
    padding: 12px;
  }

  .countdown-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(238, 99, 59, 0.68);
    color: var(--white);
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(238, 99, 59, 0.18);
    backdrop-filter: blur(12px) saturate(1.1);
  }

  .countdown-whatsapp svg {
    width: 19px;
    height: 19px;
    stroke-width: 2.2;
  }

  .scroll-cue {
    display: none;
  }

  .section,
  .gallery,
  .booking-section,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  .countdown-copy {
    padding: 0;
  }

  .countdown-copy strong {
    font-size: 32px;
    line-height: 0.9;
  }

  .countdown-copy p {
    margin-top: 8px;
    font-size: 12px;
  }

  .countdown-grid {
    gap: 8px;
  }

  .countdown-unit {
    min-height: 68px;
    padding: 8px 2px;
  }

  .countdown-unit span {
    font-size: clamp(34px, 10vw, 42px);
  }

  .countdown-unit small {
    font-size: 9px;
  }

  .intro-section {
    padding: 34px 0 30px;
  }

  .intro-grid {
    gap: 22px;
  }

  .intro-grid h2,
  .gallery-heading h2,
  .comfort-heading h2,
  .booking-copy h2 {
    font-size: 33px;
    line-height: 1;
  }

  .intro-copy,
  .comfort-heading p,
  .booking-copy > p {
    font-size: 15px;
  }

  .gallery-section {
    padding: 4px 0 44px;
  }

  .mobile-gallery-label {
    display: block;
    width: min(100% - 24px, 1180px);
    margin: 0 auto 10px;
    color: var(--sea-deep);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .gallery-heading {
    display: none;
  }

  .text-link {
    justify-content: flex-start;
  }

  .gallery {
    display: flex;
    gap: 10px;
    margin-right: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery::-webkit-scrollbar {
    display: none;
  }

  .gallery-item,
  .gallery-item-large {
    flex: 0 0 82%;
    width: 82%;
    height: 365px;
    scroll-snap-align: start;
  }

  .gallery-item span {
    min-height: 32px;
  }

  .comfort-band {
    padding: 54px 0 58px;
  }

  .comfort-heading {
    gap: 18px;
  }

  .features {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .feature-card {
    min-height: 0;
    padding: 18px;
  }

  .feature-card h3 {
    margin-top: 24px;
  }

  .booking-section {
    padding: 56px 0;
  }

  .message-preview {
    padding: 16px;
  }

  .booking-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
    gap: 8px;
    padding: 24px 0 28px;
  }

  .mobile-cta {
    display: none;
  }

  .lightbox {
    width: calc(100% - 16px);
  }

  .lightbox img {
    max-height: 72svh;
  }

  .lightbox-close {
    top: -52px;
    right: 0;
  }

  .lightbox .lightbox-prev,
  .lightbox .lightbox-next {
    display: none;
  }

  .lightbox figure {
    touch-action: pan-y;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 34px;
  }

  .gallery-item,
  .gallery-item-large {
    flex-basis: 88%;
    width: 88%;
    height: 330px;
  }

  .mobile-whatsapp {
    font-size: 14px;
  }
}

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