:root {
  color-scheme: only light;
  --ink: #17211b;
  --muted: #66736b;
  --line: #d9e2dc;
  --page: #f7faf8;
  --surface: #ffffff;
  --green: #2f6b49;
  --green-dark: #123523;
  --sun: #e2b653;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: only light;
  scroll-padding-top: 84px;
  touch-action: manipulation;
  background: var(--page);
}

.home-document {
  scrollbar-width: none;
}

.home-document::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  touch-action: manipulation;
}

body.home-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

body.home-page > main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  touch-action: manipulation;
}

button {
  color-scheme: only light;
  font: inherit;
  touch-action: manipulation;
}

img {
  max-width: 100%;
}

.home-page main {
  position: relative;
  overflow: hidden;
}

.home-page main::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  height: calc(92vh + 420px);
  background-image: image-set(url("assets/LH.webp") type("image/webp"), url("assets/LH.jpg") type("image/jpeg"));
  background-position: center 24%;
  background-size: cover;
  background-repeat: no-repeat;
}

.catalog-anchor-boot .home-page {
  background: #f4f7f2;
}

.catalog-anchor-boot .home-page main::before,
.catalog-anchor-boot .home-page .hero-media,
.catalog-anchor-boot .home-page .season-band::before {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 70px) clamp(34px, 6vw, 78px);
  overflow: visible;
  z-index: 2;
  background: transparent;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  height: 100%;
  background: transparent;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 53, 35, 0.82), rgba(18, 53, 35, 0.44) 48%, rgba(18, 53, 35, 0.14)),
    linear-gradient(0deg, rgba(18, 53, 35, 0.72), rgba(18, 53, 35, 0) 42%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: #fff;
}

.home-page .hero-copy h1,
.home-page .hero-copy > p:not(.eyebrow) {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextIn 760ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
}

.home-page .hero-copy > p:not(.eyebrow) {
  animation-delay: 180ms;
}

.home-page .hero-actions {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transform-origin: left center;
  animation: heroButtonsIn 760ms cubic-bezier(0.2, 0.72, 0.2, 1) 340ms forwards;
}

@keyframes heroButtonsIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.home-page .hero-actions .btn {
  opacity: 0;
  transform: translateY(10px);
  animation: heroButtonItemIn 520ms ease forwards;
}

.home-page .hero-actions .btn:nth-child(1) {
  animation-delay: 340ms;
}

.home-page .hero-actions .btn:nth-child(2) {
  animation-delay: 420ms;
}

.home-page .hero-actions .btn:nth-child(3) {
  animation-delay: 500ms;
}

.home-page .hero-actions .btn:nth-child(4) {
  animation-delay: 580ms;
}

.home-page.hero-animation-done .hero-copy h1,
.home-page.hero-animation-done .hero-copy > p:not(.eyebrow),
.home-page.hero-animation-done .hero-actions,
.home-page.hero-animation-done .hero-actions .btn {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

.home-page.hero-animation-done .hero-actions .btn:hover {
  translate: 0 -1px;
  box-shadow: 0 10px 24px rgba(18, 53, 35, 0.12);
}

@keyframes heroButtonItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-title-mobile {
  display: none;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  gap: 12px;
  margin-top: 28px;
}

.hero .hero-actions {
  width: fit-content;
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: stretch;
}

.hero .hero-conditions,
.hero .hero-copyright {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  justify-content: center;
}

.warning-dot {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(205, 73, 63, 0.78);
  border-radius: 50%;
  background: transparent;
  color: #cd493f;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: translate 160ms ease, transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  translate: 0 -1px;
  box-shadow: 0 10px 24px rgba(18, 53, 35, 0.12);
}

.btn.primary {
  border-color: #2f6b49;
  background: #2f6b49;
  color: #fff;
}

.btn.dark {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #fff;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  border-color: rgba(255, 255, 255, 0.32);
}

.season-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(320px, 1fr) minmax(180px, 0.75fr);
  align-items: center;
  justify-items: stretch;
  gap: 14px 24px;
  min-height: 150px;
  margin-top: 0;
  padding: 32px clamp(18px, 5vw, 70px) 104px;
  text-align: left;
  color: #fff;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(18, 53, 35, 0.82), rgba(18, 53, 35, 0.44) 48%, rgba(18, 53, 35, 0.14)),
    linear-gradient(180deg, rgba(18, 53, 35, 0.72) 0, rgba(18, 53, 35, 0.58) 22%, rgba(18, 53, 35, 0.2) 72%, rgba(18, 53, 35, 0) 100%);
}

.season-band[hidden] {
  display: none;
}

.season-band > * {
  position: relative;
  z-index: 1;
}

.season-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 53, 35, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  opacity: 0;
  transition: backdrop-filter 900ms ease, -webkit-backdrop-filter 900ms ease, opacity 900ms ease, background 900ms ease;
}

.season-band.animate-latest.is-visible::before {
  background: rgba(18, 53, 35, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 1;
}

.season-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.season-band .eyebrow {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.latest-news-heading {
  grid-column: 1 / -1;
  justify-self: start;
}

.latest-news-content {
  display: grid;
  gap: 8px;
  max-width: 620px;
  grid-column: 2;
  justify-self: center;
  justify-items: start;
}

.latest-news-content time {
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.latest-news-content p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.65;
  text-align: left;
}

.season-band .btn.dark {
  grid-column: 3;
  justify-self: end;
  align-self: center;
  width: auto;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.season-band.animate-latest:not(.is-visible) .latest-news-heading,
.season-band.animate-latest:not(.is-visible) .latest-news-content,
.season-band.animate-latest:not(.is-visible) .btn.dark {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
}

.season-band.animate-latest.is-visible .latest-news-heading,
.season-band.animate-latest.is-visible .latest-news-content {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 760ms cubic-bezier(0.18, 0.76, 0.18, 1),
    transform 760ms cubic-bezier(0.18, 0.76, 0.18, 1),
    filter 760ms cubic-bezier(0.18, 0.76, 0.18, 1);
}

.season-band.animate-latest.is-visible .latest-news-content {
  transition-delay: 180ms;
}

.season-band.animate-latest.is-visible .btn.dark {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 760ms cubic-bezier(0.18, 0.76, 0.18, 1) 360ms,
    transform 760ms cubic-bezier(0.18, 0.76, 0.18, 1) 360ms,
    filter 760ms cubic-bezier(0.18, 0.76, 0.18, 1) 360ms;
}

.season-band.animate-latest.is-visible .btn.dark:hover {
  translate: 0 -1px;
}

.home-catalogs {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 32px;
  padding: 32px clamp(18px, 5vw, 70px);
  background:
    linear-gradient(180deg, #f4f7f2 0, #eef4ee 100%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.home-catalogs .section-heading {
  align-items: end;
  padding-bottom: 0;
}

.home-catalogs .section-heading .eyebrow {
  margin-bottom: 0;
  color: var(--green);
  font-size: 19px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-catalogs.animate-catalogs .section-heading {
  opacity: 0;
  transform: translateY(16px);
}

.home-catalogs.animate-catalogs.is-visible .section-heading {
  animation: catalogHeadingIn 580ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
}

@keyframes catalogHeadingIn {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

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

.home-catalog-card {
  position: relative;
  min-height: 294px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(47, 107, 73, 0.16);
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(18, 53, 35, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-catalogs.animate-catalogs .home-catalog-card {
  opacity: 0;
  transform: translateY(22px);
}

.home-catalogs.animate-catalogs.is-visible .home-catalog-card {
  opacity: 1;
  transform: translateY(0);
  animation: catalogCardIn 620ms ease backwards;
  animation-delay: 120ms;
}

.home-catalogs.animate-catalogs.is-visible .home-catalog-card:nth-child(2) {
  animation-delay: 200ms;
}

.home-catalogs.animate-catalogs.is-visible .home-catalog-card:nth-child(3) {
  animation-delay: 280ms;
}

.home-catalogs.animate-catalogs.is-visible .home-catalog-card:nth-child(4) {
  animation-delay: 360ms;
}

.home-catalogs.animate-catalogs.is-visible .home-catalog-card:nth-child(5) {
  animation-delay: 440ms;
}

.home-catalogs.animate-catalogs.is-visible .home-catalog-card:nth-child(6) {
  animation-delay: 520ms;
}

.home-catalogs.animate-catalogs.is-visible .home-catalog-card:nth-child(7) {
  animation-delay: 600ms;
}

@keyframes catalogCardIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-catalog-card.large {
  grid-column: span 2;
}

.home-catalog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 53, 35, 0.04) 0, rgba(18, 53, 35, 0.18) 42%, rgba(18, 53, 35, 0.86) 100%),
    linear-gradient(90deg, rgba(18, 53, 35, 0.48), rgba(18, 53, 35, 0.06));
}

.home-catalog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 26px 52px rgba(18, 53, 35, 0.18);
}

.home-catalog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}

.home-catalog-card:hover img {
  transform: scale(1.04);
}

.home-catalog-card span,
.home-catalog-card strong {
  position: relative;
  z-index: 1;
}

.home-catalog-card span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-catalog-card strong {
  max-width: 360px;
  font-size: clamp(23px, 2.55vw, 36px);
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1180px) {
  .home-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-catalog-card.large {
    grid-column: span 1;
  }
}

@media (max-width: 920px) {
  .season-band {
    grid-template-columns: minmax(0, 0.35fr) minmax(250px, 1fr) minmax(150px, 0.35fr);
    padding-bottom: 32px;
  }

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

@media (max-width: 680px), (hover: none) and (pointer: coarse) and (max-width: 1180px), (orientation: portrait) and (max-width: 1180px) {
  .season-band {
    grid-template-columns: 1fr;
    padding-top: 16px;
  }

  .season-band .latest-news-heading,
  .season-band .latest-news-content,
  .season-band .btn.dark {
    grid-column: auto;
  }

  .season-band .latest-news-content,
  .season-band .btn.dark {
    justify-self: stretch;
  }

  .hero {
    min-height: 86vh;
    padding: 104px 14px 42px;
  }

  h1 {
    font-size: clamp(32px, 9.4vw, 40px);
    line-height: 1;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: inline;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-copy > p:not(.eyebrow),
  .latest-news-content p {
    max-width: 100%;
    font-size: clamp(16px, 4.6vw, 18px);
    line-height: 1.45;
    overflow-wrap: normal;
  }

  .hero .hero-actions {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    margin-top: 24px;
  }

  .hero .hero-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 10px 10px;
    font-size: 15px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    overflow-wrap: normal;
  }

  .hero .hero-actions .btn:nth-child(-n + 2) {
    padding-inline: 6px;
    white-space: nowrap;
  }

  .btn {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .home-catalog-card strong {
    min-width: 0;
    font-size: clamp(17px, 4.8vw, 22px);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .home-catalog-card span {
    max-width: 100%;
    padding: 5px 8px;
    font-size: 11px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .home-catalogs {
    gap: 16px;
    padding: 16px 12px 32px;
  }

  .home-catalog-grid {
    gap: 10px;
  }

  .home-catalog-card {
    min-height: 214px;
    padding: 14px;
  }

  .home-catalog-card:last-child {
    grid-column: 1 / -1;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-catalogs .section-heading {
    margin: 0;
    align-items: flex-start;
    text-align: left;
  }

  .season-band .eyebrow,
  .home-catalogs .section-heading .eyebrow {
    font-size: 16px;
    letter-spacing: 0.06em;
  }

  .home-catalogs .section-heading .eyebrow {
    align-self: flex-start;
  }
}

@media (max-width: 430px) {
  .home-page .hero {
    padding-inline: 12px;
  }

  .hero .hero-actions {
    gap: 8px;
  }

  .hero .hero-actions .btn {
    padding: 10px 8px;
  }

  .hero .hero-actions .btn:nth-child(-n + 2) {
    padding-inline: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-copy h1,
  .home-page .hero-copy > p:not(.eyebrow),
  .home-page .hero-actions,
  .home-page .hero-actions .btn,
  .home-page .season-band.animate-latest .latest-news-heading,
  .home-page .season-band.animate-latest .latest-news-content,
  .home-page .season-band.animate-latest .btn.dark,
  .home-catalogs.animate-catalogs .section-heading,
  .home-catalogs.animate-catalogs .home-catalog-card {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}
