:root {
  color-scheme: light;
  --pine: #1f3f2d;
  --pine-2: #2f5a3f;
  --pine-dark: #102219;
  --amber: #c07a27;
  --sand: #f6f1e8;
  --paper: #fffdf8;
  --mist: #eef3ef;
  --ink: #18231c;
  --muted: #657369;
  --line: rgba(31, 63, 45, 0.16);
  --shadow: 0 18px 50px rgba(16, 34, 25, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: auto;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--pine);
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

.skip-link:focus-visible {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  overflow: visible;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), 1240px);
  margin: 14px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 34, 25, 0.44);
  color: #fffdf8;
  padding: 10px 12px 10px 18px;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(31, 63, 45, 0.12);
  background: rgba(255, 253, 248, 0.92);
  color: var(--pine-dark);
  box-shadow: 0 10px 35px rgba(16, 34, 25, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  width: 42px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.94);
  object-fit: contain;
  padding: 3px;
  box-shadow: 0 8px 20px rgba(16, 34, 25, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav a {
  border-radius: var(--radius);
  padding: 10px 12px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: var(--mist);
}

.site-nav .nav-call {
  background: var(--pine-2);
  color: #fff;
  padding-inline: 18px;
}

.site-nav .nav-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-nav .nav-call:hover,
.site-nav .nav-call:focus-visible {
  background: var(--pine);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--pine-dark);
}

.hero-bg,
.hero-bg img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 34, 25, 0.86) 0%, rgba(16, 34, 25, 0.55) 44%, rgba(16, 34, 25, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 34, 25, 0.72) 0%, rgba(16, 34, 25, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 820px);
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 150px 0 72px;
  color: #fffdf8;
}

.hero-copy {
  max-width: 760px;
}

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

h1,
h2 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.35vw, 3.9rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-copy p {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 0.94rem;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: #fffdf8;
  color: var(--pine);
}

.btn-secondary {
  border-color: rgba(255, 253, 248, 0.55);
  color: #fffdf8;
}

.btn-outline {
  border-color: rgba(31, 63, 45, 0.24);
  background: transparent;
  color: var(--pine);
}

.section {
  scroll-margin-top: 104px;
  padding: clamp(68px, 9vw, 112px) 0;
}

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

.section-note {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head p:last-child,
.intro-text p,
.region-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-head.compact {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.intro {
  background: var(--sand);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.9fr);
  gap: 42px 64px;
  align-items: start;
}

.proof-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-row div {
  min-height: 118px;
  background: rgba(255, 253, 248, 0.62);
  padding: 24px;
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  margin-bottom: 7px;
  color: var(--pine);
  font-size: 1.05rem;
}

.proof-row span {
  color: var(--muted);
  font-size: 0.94rem;
}

.cabins {
  background: linear-gradient(180deg, var(--paper) 0%, #f8fbf8 100%);
}

.cabin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cabin-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 34, 25, 0.06);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.cabin-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.cabin-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.cabin-card div {
  padding: 18px;
}

.cabin-card p {
  min-height: 126px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cabin-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-top: 1px solid var(--line);
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 800;
}

.cabin-details {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.cabin-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  color: var(--pine);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
}

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

.cabin-details summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
}

.cabin-details[open] summary::after {
  content: "-";
}

.cabin-details ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 14px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.mini-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border-radius: 6px;
}

.cabin-card.featured {
  border-color: rgba(192, 122, 39, 0.42);
}

.amenities {
  background: var(--sand);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.56);
}

.amenity-item {
  min-height: 210px;
  padding: 28px 18px;
  text-align: center;
}

.amenity-item + .amenity-item {
  border-left: 1px solid var(--line);
}

.amenity-item svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  fill: none;
  stroke: var(--pine);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.gallery {
  background: #fff;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.cabin-card > img,
.mini-gallery img,
.photo-mosaic img,
.beach-card img {
  cursor: zoom-in;
}

.cabin-card > img:focus-visible,
.mini-gallery img:focus-visible,
.photo-mosaic img:focus-visible,
.beach-card img:focus-visible {
  outline: 3px solid rgba(192, 122, 39, 0.72);
  outline-offset: 3px;
}

.photo-mosaic .wide {
  grid-column: span 3;
  grid-row: span 2;
}

.photo-mosaic .tall {
  grid-row: span 2;
}

.jantar {
  background: var(--paper);
}

.jantar-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: start;
}

.jantar-copy > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.04rem;
}

.attraction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin-top: 30px;
}

.attraction-grid article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.attraction-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.beach-card {
  position: sticky;
  top: 112px;
  margin: 0;
}

.beach-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.beach-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.region {
  background: var(--mist);
}

.region-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 18px;
}

.info-list div:not(.inline-actions) {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.info-list strong {
  color: var(--pine);
  font-size: 1rem;
}

.info-list span {
  color: var(--muted);
  font-size: 1.02rem;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.map-section {
  background: #fff;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.map-grid p {
  color: var(--muted);
  font-size: 1.02rem;
}

.map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 63, 45, 0.08), rgba(192, 122, 39, 0.08)),
    var(--mist);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

.map-fallback {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  color: var(--pine);
  padding: 10px 12px;
  box-shadow: 0 10px 28px rgba(16, 34, 25, 0.16);
  font-size: 0.86rem;
  font-weight: 850;
}

.guest-voices {
  background: var(--sand);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.voice-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  padding: 28px;
}

.voice-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.voice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
}

.faq-grid > div:first-child p:not(.section-note) {
  color: var(--muted);
  font-size: 1.02rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px 20px;
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--pine);
  cursor: pointer;
  font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--pine-dark);
  color: #fffdf8;
}

.contact-bg,
.contact-bg img {
  position: absolute;
  inset: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 34, 25, 0.92) 0%, rgba(16, 34, 25, 0.72) 50%, rgba(16, 34, 25, 0.35) 100%);
}

.contact-panel {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 680px);
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  padding: 78px 0;
}

.contact-panel p:not(.section-note) {
  max-width: 560px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.05rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 42px;
  color: #fffdf8;
  font-weight: 760;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--pine);
  color: rgba(255, 253, 248, 0.88);
  padding: 26px max(20px, calc((100vw - var(--max)) / 2));
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 253, 248, 0.78);
}

.footer-meta {
  display: grid;
  gap: 6px;
  max-width: 390px;
}

.footer-meta p {
  margin: 0;
  color: rgba(255, 253, 248, 0.66);
}

.footer-meta a {
  color: rgba(255, 253, 248, 0.92);
  font-weight: 800;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  text-decoration: underline;
}

.footer-brand {
  font-size: 1.05rem;
}

.footer-brand .brand-logo {
  width: 46px;
  height: 42px;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 18px;
  background: rgba(8, 15, 11, 0.9);
  padding: 42px 20px 28px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(94vw, 1220px);
  max-height: 78vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.lightbox p {
  max-width: min(92vw, 860px);
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  text-align: center;
  font-size: 0.95rem;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
  color: #fffdf8;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 253, 248, 0.22);
}

@media (max-width: 980px) {
  .site-header {
    width: min(calc(100% - 24px), 760px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.96);
    color: var(--pine-dark);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .section-head,
  .intro-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

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

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

  .amenity-item:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .amenity-item:nth-child(n + 5) {
    border-top: 1px solid var(--line);
  }

  .photo-mosaic {
    grid-template-columns: repeat(4, 1fr);
  }

  .jantar-grid,
  .map-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .voice-grid {
    grid-template-columns: 1fr;
  }

  .beach-card {
    position: static;
  }

  .beach-card img {
    aspect-ratio: 16 / 10;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    margin-top: 10px;
    padding-left: 14px;
  }

  .brand {
    font-size: 1.02rem;
  }

  .brand-logo {
    width: 38px;
    height: 34px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(16, 34, 25, 0.72) 0%, rgba(16, 34, 25, 0.78) 46%, rgba(16, 34, 25, 0.94) 100%);
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--max));
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 3.15rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section {
    padding: 62px 0;
  }

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

  .proof-row,
  .cabin-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .proof-row div + div,
  .amenity-item + .amenity-item,
  .amenity-item:nth-child(n) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .cabin-card p {
    min-height: 0;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .photo-mosaic .wide {
    grid-column: span 2;
  }

  .photo-mosaic .tall {
    grid-row: span 1;
  }

  .mini-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .attraction-grid {
    grid-template-columns: 1fr;
  }

  .map-frame iframe {
    min-height: 360px;
  }

  .contact-panel {
    width: min(calc(100% - 28px), 680px);
    margin: 0 auto;
  }
}

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