:root {
  --color-primary: #024029;
  --color-primary-deep: #01291b;
  --color-primary-soft: #0a5a3d;
  --color-primary-muted: #dce9e1;
  --color-primary-pale: #eef4f0;
  --color-surface: #f6f4ef;
  --color-surface-strong: #ffffff;
  --color-border: rgba(2, 64, 41, 0.12);
  --color-text: #17221d;
  --color-text-soft: #51615a;
  --shadow-soft: 0 18px 40px rgba(1, 41, 27, 0.08);
  --shadow-strong: 0 24px 60px rgba(1, 41, 27, 0.16);
  --radius-large: 28px;
  --radius-medium: 20px;
  --radius-small: 14px;
  --container-width: min(1120px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(2, 64, 41, 0.04), transparent 32%),
    linear-gradient(180deg, #faf8f4 0%, var(--color-surface) 100%);
  line-height: 1.7;
}

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

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

[id] {
  scroll-margin-top: 110px;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(246, 244, 239, 0.82);
  border-bottom: 1px solid rgba(2, 64, 41, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

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

.brand-logo {
  display: block;
  width: clamp(40px, 4vw, 60px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(2, 64, 41, 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-soft);
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-primary);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, var(--color-primary-deep) 0%, var(--color-primary) 56%, var(--color-primary-soft) 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 46%, rgba(255, 255, 255, 0.05) 46% 55%, transparent 55% 100%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.section-eyebrow {
  margin-bottom: 16px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

.hero-content h1,
.section-heading h2,
.hero-card-main h2,
.about-highlight-card h3 {
  font-family: "Cormorant Garamond", serif;
}

.hero-content h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-description {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(145deg, #0e6645 0%, var(--color-primary-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(145deg, #13734d 0%, var(--color-primary) 100%);
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.hero-aside {
  display: grid;
  gap: 18px;
}

.hero-card {
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-strong);
}

.hero-card-main {
  padding: 34px;
}

.hero-card-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-card-main h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

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

.hero-stat {
  padding: 18px 14px;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.hero-card-note {
  padding: 22px 26px;
}

.hero-card-note p {
  color: rgba(255, 255, 255, 0.85);
}

.section-block {
  padding: 96px 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 40px;
}

.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #0e7950 100%);
}

.section-heading-centered h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-intro {
  margin-top: 18px;
  color: var(--color-text-soft);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 36px;
  align-items: stretch;
}

.about-content>p {
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.feature-pill {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-medium);
  background: var(--color-surface-strong);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.feature-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(1, 41, 27, 0.11);
  border-color: rgba(2, 64, 41, 0.18);
}

.feature-badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--color-primary-pale);
  color: var(--color-primary);
  font-weight: 800;
}

.feature-pill h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 4px;
}

.feature-pill p {
  color: var(--color-text-soft);
  font-size: 0.96rem;
}

.about-visual {
  display: flex;
  align-items: center;
}

.about-highlight-card {
  position: relative;
  width: 100%;
  padding: 34px;
  border-radius: var(--radius-large);
  color: #ffffff;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, transparent 48%),
    linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-deep) 100%);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.about-highlight-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 62%);
}

.mini-title {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-highlight-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.04;
  margin: 22px 0 28px;
}

@media (min-width: 1081px) {
  .about-highlight-card {
    transform: translateY(-35px);
  }
}

.about-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.about-metrics li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.08);
}

.about-metrics strong {
  font-size: 1rem;
}

.about-metrics span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.services-section {
  background: linear-gradient(180deg, rgba(2, 64, 41, 0.03) 0%, rgba(2, 64, 41, 0) 100%);
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(2, 64, 41, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(177, 139, 81, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(2, 64, 41, 0.06) 0%, rgba(246, 244, 239, 0.98) 28%, rgba(2, 64, 41, 0.02) 100%);
}

.gallery-section::before,
.gallery-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.gallery-section::before {
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 68%);
}

.gallery-section::after {
  width: 320px;
  height: 320px;
  bottom: -140px;
  left: -80px;
  background: radial-gradient(circle, rgba(2, 64, 41, 0.14), transparent 68%);
}

.gallery-section .container {
  position: relative;
  z-index: 1;
}

.products-overview {
  margin-bottom: 42px;
  padding: 34px;
  border: 1px solid rgba(2, 64, 41, 0.12);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 245, 241, 0.86) 100%);
  box-shadow: 0 28px 56px rgba(1, 41, 27, 0.1);
}

.products-heading {
  max-width: none;
  margin-bottom: 0;
}

.card-grid,
.benefit-grid,
.gallery-grid {
  display: grid;
  gap: 22px;
}

.card-grid-four,
.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.benefit-card,
.gallery-card,
.contact-card {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.info-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-medium);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 64, 41, 0.18);
  box-shadow: 0 26px 46px rgba(1, 41, 27, 0.12);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin-bottom: 18px;
  background: var(--color-primary-pale);
  color: var(--color-primary);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.info-card h3,
.benefit-card h3,
.contact-item h3 {
  font-size: 1.15rem;
  line-height: 1.3;
}

.info-card p,
.benefit-card p,
.contact-item p {
  margin-top: 10px;
  color: var(--color-text-soft);
}

.reasons-section {
  position: relative;
}

.benefit-card {
  padding: 28px;
  border-radius: var(--radius-medium);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(1, 41, 27, 0.11);
}

.benefit-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
}

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

.gallery-card {
  padding: 18px;
  border-radius: 24px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 64, 41, 0.18);
  box-shadow: 0 26px 48px rgba(1, 41, 27, 0.12);
}

.product-grid {
  gap: 26px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 242, 0.96) 100%);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 64, 41, 0.1), transparent 66%);
  pointer-events: none;
}

.gallery-image-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(2, 64, 41, 0.08), transparent 48%),
    linear-gradient(180deg, #fbfaf7 0%, #edf1ee 100%);
  overflow: hidden;
}

.product-image-frame {
  aspect-ratio: 1 / 1;
  padding: 18px;
  border: 1px solid rgba(2, 64, 41, 0.08);
  background:
    radial-gradient(circle at top, rgba(2, 64, 41, 0.12), transparent 42%),
    linear-gradient(180deg, #fdfcf8 0%, #e9efe9 100%);
}

.gallery-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 16px 22px rgba(1, 41, 27, 0.18));
}

.gallery-card figcaption {
  padding: 16px 4px 2px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text);
}

.product-card:hover .gallery-image-frame img {
  transform: scale(1.04);
}

.product-card .product-image-frame {
  cursor: zoom-in;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.product-card .product-image-frame:focus-visible {
  outline: none;
  border-color: rgba(2, 64, 41, 0.34);
  box-shadow: 0 0 0 4px rgba(177, 139, 81, 0.22);
}

.product-copy {
  display: grid;
  gap: 12px;
  padding: 18px 8px 10px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(2, 64, 41, 0.08);
  color: var(--color-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-copy h3 {
  font-size: 1.12rem;
  line-height: 1.28;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 14, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1180px);
  max-height: calc(100vh - 56px);
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 112px);
  object-fit: contain;
  border-radius: 20px;
  background: linear-gradient(180deg, #fdfcf8 0%, #edf1ee 100%);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 18, 14, 0.78);
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(2, 64, 41, 0.96);
  transform: scale(1.04);
  outline: none;
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 20px;
}

.contact-card {
  border-radius: var(--radius-large);
}

.contact-card {
  padding: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
}

.contact-item+.contact-item {
  border-top: 1px solid rgba(2, 64, 41, 0.08);
}

.contact-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--color-primary-pale);
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item a {
  color: var(--color-primary);
  font-weight: 700;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--color-primary-soft);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.8);
  background: var(--color-primary-deep);
  text-align: center;
}

@media (max-width: 1080px) {

  .hero-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    max-width: 14ch;
  }

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

@media (max-width: 768px) {
  .section-block {
    padding: 76px 0;
  }

  .header-inner {
    gap: 12px;
    padding: 10px 0;
  }

  .brand-logo {
    width: clamp(36px, 8vw, 52px);
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 6px 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: clamp(0.84rem, 2vw, 0.92rem);
    font-weight: 600;
  }

  .hero-section {
    padding: 72px 0 60px;
  }

  .hero-card-main,
  .about-highlight-card,
  .contact-card,
  .products-overview {
    padding: 24px;
  }

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

  .lightbox {
    padding: 16px;
  }

  .lightbox-dialog {
    width: 100%;
    max-height: calc(100vh - 32px);
    padding: 20px;
    border-radius: 24px;
  }

  .lightbox-image {
    max-height: calc(100vh - 72px);
  }
}

@media (max-width: 560px) {
  .brand {
    width: auto;
  }

  .header-inner {
    gap: 8px;
    padding: 8px 0;
  }

  .brand-logo {
    width: clamp(32px, 10vw, 44px);
  }

  .site-nav {
    gap: 5px 8px;
  }

  .site-nav a {
    font-size: clamp(0.76rem, 2.8vw, 0.84rem);
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(2.7rem, 14vw, 3.8rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stat-grid,
  .card-grid-four,
  .benefit-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-pill,
  .contact-item {
    flex-direction: column;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }

  .lightbox-dialog {
    padding: 14px;
    border-radius: 20px;
  }

  .lightbox-image {
    max-height: calc(100vh - 52px);
    border-radius: 16px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
