/* Import CSS files in order */
@import url("reset.css");
@import url("variables.css");
@import url("base.css");
@import url("color.css");
@import url("typography.css");
@import url("component.css");

body {
  background-color: var(--body-color);
}
.menu-active,
.language-drawer-active {
  overflow: hidden;
}
.skip-link {
  position: fixed;
  left: var(--gutter);
  top: var(--gutter);
  z-index: 1000;
  padding: 0.8rem 1.2rem;
  color: var(--body-color);
  background: var(--primary-color);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: translateY(0);
}

footer {
  background-color: var(--primary-color);
  margin-top: 0.2rem;
  position: relative;
  padding-bottom: 8rem;
}
footer::after {
  content: "";
  position: absolute;
  top: -0.2rem;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: url("../images/footer-border.svg") left top repeat-x;
  background-size: auto;
}
footer p,
footer p a {
  color: var(--footer-text-color);
}
.footer-content p a {
  text-decoration: underline;
}
.footer-content p a:hover {
  text-decoration: none;
}
.footer-content {
  padding: var(--lg-space) 0;
}
.footer-content,
.copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--lg-space);
}
.copyright {
  gap: var(--md-space) var(--lg-space);
}
.footer-content > :last-child,
.copyright > :last-child {
  flex: 1 0 0%;
  max-width: 73.3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo a {
  display: flex;
}
.footer-logo img {
  width: clamp(20rem, 25vw, 37.4rem);
}
.contact-block-row:not(:last-child) {
  margin-bottom: var(--md-space);
}
.contact-block-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--regular-space);
  justify-content: space-between;
}
.contact-block-row > :last-child {
  text-align: right;
}
.contact-block-row p {
  line-height: 1;
}
.contact-block-row p:not(:last-child) {
  margin-bottom: var(--xxs-space);
}
.copyright p {
  font-size: var(--fs-lg);
}
.copyright-block-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--regular-space);
  justify-content: space-between;
}
.copyright p a:hover {
  text-decoration: underline;
}
@media (width < 992px) {
  .copyright p {
    font-size: var(--fs-md);
  }
}
@media (width < 768px) {
  .footer-content,
  .copyright {
    flex-direction: column;
    align-items: normal;
  }
  .copyright p {
    font-size: var(--fs-sm);
  }
}

.news-letter-section {
  padding: var(--lg-space) 0;
  background: url("../images/newsletter-bg.jpg") left top repeat
    var(--secondary-color);
}
.news-letter-section h3 {
  font-family: var(--secondary-font-medium);
  color: var(--primary-color);
}
.news-letter-form-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--md-space);
}
.news-letter-form-wrap > :last-child {
  flex: 1 0 0%;
  max-width: 73.3rem;
}
.news-letter-form {
  display: flex;
}
.news-letter-form button {
  height: var(--form-control-height);
  padding: 0 var(--gutter);
  white-space: nowrap;
}
.news-letter-form button {
  width: 23rem;
  text-align: center;
  background-color: var(--primary-color);
  background-image: linear-gradient(
    to right,
    var(--primary-color-dark),
    var(--primary-color-dark)
  );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0 100%;
  display: grid;
  place-items: center;
  font-family: var(--secondary-font);
  color: var(--body-color);
  cursor: pointer;
  transition: background-size 280ms ease;
}
.news-letter-form button:hover,
.news-letter-form button:focus-visible {
  background-size: 100% 100%;
}
.news-letter-form button:focus-visible {
  outline: 0.2rem solid var(--primary-color-dark);
  outline-offset: 0.3rem;
}
.news-letter-form .form-control {
  flex: 1 0 0%;
}
.news-letter-form {
  margin-bottom: 2.4rem;
}
@media (width < 992px) {
  .news-letter-form-wrap {
    flex-direction: column;
  }
  .news-letter-form button {
    width: auto;
  }
  .news-letter-form-block,
  .news-letter-form {
    width: 100%;
  }
}
@media (width < 480px) {
  .news-letter-form {
    flex-direction: column;
  }
  .news-letter-form .form-control {
    flex: inherit;
  }
}
@media (prefers-reduced-motion: reduce) {
  .news-letter-form button {
    transition: none;
  }
}

.section {
  padding: var(--lg-space) 0;
}
.page-header:not(:last-child) {
  margin-bottom: var(--lg-space);
}

.contact-form-wrap {
  display: flex;
  gap: var(--md-space);
}
.contact-form-wrap > * {
  flex: 1 0 0%;
}
.contact-form-wrap > :first-child {
  max-width: 58rem;
}
.contact-form-wrap h1 {
  font-family: var(--secondary-font-medium);
  color: var(--primary-color);
}
.contact-form-wrap article {
  max-width: 43rem;
}
.contact-form {
  border: 0.1rem solid var(--primary-color);
  padding: var(--md);
  border-radius: 0.4rem;
}
.contact-form > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter) calc(var(--xxs-space) + var(--xs-space));
}
.contact-form > ul > li .label:not(:last-child) {
  margin-bottom: var(--gutter-half);
}
.contact-form > ul > li .label {
  display: block;
  font-family: var(--font-bold);
  text-transform: uppercase;
  color: var(--primary-color);
  line-height: 1;
}
.contact-form > ul > li .label span {
  color: var(--orange-color);
}
.contact-form > ul > li .form-control {
  border-radius: 0.2rem;
  border-color: var(--primary-color);
}
.searchable-select {
  position: relative;
}
.searchable-select::after {
  position: absolute;
  right: var(--gutter-half);
  top: calc(var(--form-control-height) / 2);
  width: 0.8rem;
  height: 0.8rem;
  border-right: 0.1rem solid var(--primary-color);
  border-bottom: 0.1rem solid var(--primary-color);
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}
.searchable-select.is-open::after {
  transform: translateY(-25%) rotate(225deg);
}
.searchable-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.searchable-select .searchable-select__input {
  padding-right: calc(var(--gutter) + 1.6rem);
}
.searchable-select--readonly .searchable-select__input {
  cursor: pointer;
}
.searchable-select__list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.4rem);
  left: 0;
  width: 100%;
  max-height: 28rem;
  overflow-y: auto;
  padding: 0.4rem;
  border: 0.1rem solid var(--primary-color);
  background-color: var(--body-color);
  box-shadow: 0 1rem 2.4rem rgba(91, 98, 107, 0.16);
}
.searchable-select__option {
  display: block;
  width: 100%;
  padding: 1rem 1.2rem;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--body-font-size);
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}
.searchable-select__option:hover,
.searchable-select__option.is-active {
  color: var(--body-color);
  background-color: var(--primary-color);
}
.searchable-select__empty {
  padding: 1rem 1.2rem;
  color: var(--text-color);
}
.contact-form .checkbox label {
  font-size: var(--fs-lg);
}
.contact-form .checkbox label::before {
  top: 0.6rem;
}
@media (width < 1300px) {
  .contact-form-wrap > :first-child {
    max-width: 40rem;
  }
}
@media (width < 1200px) {
  .contact-form-wrap {
    flex-direction: column;
  }
  .contact-form-wrap > :first-child {
    max-width: 100%;
  }
  .contact-form-wrap article {
    max-width: 100%;
  }
}
@media (width > 767px) {
  .col-span-md-2 {
    grid-column: span 2;
  }
}
@media (width < 768px) {
  .contact-form {
    padding: var(--md) var(--gutter);
  }
  .contact-form > ul {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .searchable-select::after {
    transition: none;
  }
}

.products-tabs {
  border-top: 0.1rem solid var(--primary-color);
  border-bottom: 0.1rem solid var(--primary-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0 var(--gutter);
}
.products-tabs ul {
  display: flex;
  gap: 4.8rem;
  flex-wrap: wrap;
}
.products-tabs ul li {
  display: flex;
}
.products-tabs ul li a,
.products-tabs ul li button,
.tab-checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  white-space: nowrap;
  font-size: var(--fs-lg);
  color: var(--primary-color);
  padding: 0 0.8rem;
  opacity: 60%;
  transition: var(--transition);
  background: transparent;
  border: 0;
}
.products-tabs ul li a.active,
.products-tabs ul li a:hover,
.products-tabs ul li button.active,
.products-tabs ul li button:hover {
  opacity: 100%;
}
.products-tabs ul.main-tabs li a.active,
.products-tabs ul.main-tabs li a:hover,
.products-tabs ul.main-tabs li button.active,
.products-tabs ul.main-tabs li button:hover {
  text-decoration: underline;
}
@media (width < 1200px) {
  .products-tabs ul {
    gap: 0 var(--gutter-half);
  }
  .products-tabs ul li a,
  .products-tabs ul li button,
  .tab-checkbox label {
    height: 6rem;
  }
}
@media (width < 992px) {
  .products-tabs ul li a,
  .products-tabs ul li button,
  .tab-checkbox label {
    height: 5rem;
  }
}
.tab-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.tab-checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1.4rem;
  cursor: pointer;
}
.tab-checkbox input:focus-visible + label {
  outline: 0.2rem solid currentColor;
  outline-offset: 0.2rem;
}
.tab-checkbox label::before {
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  border: 0.1rem solid var(--primary-color);
  border-radius: 100%;
}
.tab-checkbox input:checked ~ label {
  opacity: 1;
}
.tab-checkbox input:checked ~ label::before {
  background-color: var(--primary-color);
}
.products-tabs:not(:last-child) {
  margin-bottom: var(--lg-space);
}
.products-tab-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lg-space) calc(var(--xs-space) * 2);
}
.products-empty {
  padding: var(--md-space) 0;
  text-align: center;
}
.product figure {
  border: 0.1rem solid var(--primary-color);
  aspect-ratio: 1;
}
.product figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product figure {
  margin-bottom: calc(var(--xs-space) * 2);
}
.product-content {
  padding: 0 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gutter-half);
  color: var(--primary-color);
}
.product-weight {
  line-height: 1;
  font-family: var(--secondary-font-light);
  color: var(--primary-color);
  margin-left: auto;
  text-align: right;
}
@media (width < 1200px) {
  .products-tab-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 640px) {
  .products-tab-content {
    grid-template-columns: 1fr;
  }
}

.single-product-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: flex-start;
  gap: var(--lg-space);
  margin-top: var(--md-space);
}
.single-product-page-images figure {
  aspect-ratio: 1;
  overflow: hidden;
}
.single-product-page-images figure:not(:last-child) {
  margin-bottom: var(--md-space);
}
.single-product-page-images figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-product-page-images {
  width: 100%;
  min-width: 0;
}
.single-product-page-images > .swiper-wrapper {
  display: block;
}



.single-product-page-content {
  width: 100%;
  max-width: 58rem;
  align-self: start;
  justify-self: center;
}
.single-product-page-content > :not(:last-child) {
  margin-bottom: calc(var(--md-space) + var(--gutter));
}
.single-product-page-content {
  color: var(--primary-color);
}
@media (width < 992px) {
  .single-product-section {
    padding-top: calc(var(--header-height) + var(--md-space));
  }
  .single-product-page {
    grid-template-columns: 1fr;
  }
  .single-product-page-images {
    width: calc(100% + var(--gutter));
  }
  .single-product-page-images > .swiper-wrapper {
    display: flex;
  }
  .single-product-page-images figure:not(:last-child) {
    margin-bottom: 0;
  }
  .single-product-page-content {
    max-width: 100%;
  }
}

.page-hero-section {
  min-height: 100dvh;
}
.page-hero-section .page-hero-content {
  flex: 1 0 0%;
  display: grid;
  place-items: center;
}
.page-hero-content--edge-aligned {
  justify-content: end;
}
.page-hero-section-order-lg-2 .page-hero-content--edge-aligned {
  justify-content: start;
}
.page-hero-section .page-hero-content article {
  width: 100%;
  max-width: 73rem;
  padding: var(--gutter);
}
.page-hero-image {
  max-width: 35vw;
}
.page-hero-image figure {
  height: 100%;
  margin-left: calc(((100vw - var(--container-width)) / 2) * -1);
}
.page-hero-image figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (width < 1721px) {
  .page-hero-image figure {
    margin-left: calc(var(--gutter) * -1);
  }
}
.article-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.article-header:not(:last-child) {
  margin-bottom: calc(var(--md-space) + var(--md));
}
.headdings {
  padding: 0 var(--gutter);
}
.heading-line {
  display: block;
}
.heading-line:last-child {
  text-align: right;
}
.headdings h1,
.headdings h2 {
  font-size: var(--h1);
  line-height: 1;
  color: var(--primary-color);
}
.headdings h1:not(:last-child),
.headdings h2:not(:last-child) {
  margin-bottom: 0;
}
.headdings h1:last-child,
.headdings h2:last-child {
  text-align: right;
}
.article-text-header:not(:last-child) {
  margin-bottom: var(--gutter);
}
.article-text-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter-half);
}
.article-text-header p {
  white-space: nowrap;
}
.article-text:not(:first-child) {
  margin-top: 15dvh;
}
.article-text {
  max-width: 58rem;
  margin-inline: auto;
  max-width: 85%;
}
@media (width < 992px) {
  .page-hero-content--edge-aligned {
    justify-content: start;
  }
  .page-hero-section.flex .container {
    flex-direction: column;
  }
  .page-hero-image {
    max-width: 100%;
  }
  .page-hero-image figure {
    margin-left: 0;
    max-width: 100%;
  }
  .page-hero-section .page-hero-content article {
    padding: var(--md) 0;
  }
  .headdings {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 1rem;
    padding: 0;
  }
  .headdings h1,
  .headdings h2 {
    white-space: nowrap;
  }
  .page-hero-section .page-hero-content article {
    max-width: 100%;
  }
  .article-header {
    justify-content: flex-start;
    gap: 1rem;
  }
  .article-header:not(:last-child) {
    margin-bottom: var(--gutter);
  }
  .article-text {
    max-width: 100%;
  }
  .article-text:not(:first-child) {
    margin-top: var(--gutter);
  }
  .article-text-header {
    justify-content: flex-start;
  }
  .article-text-header:not(:last-child) {
    margin-bottom: var(--gutter-half);
  }
}

.articlle-2-content {
  max-width: 88.5rem;
}
.articlle-2-content:not(:last-child) {
  margin-bottom: var(--md);
}
.articlle-2-content-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.articlle-2-content-header > * {
  white-space: nowrap;
}
.articlle-2-content-header:not(:last-child) {
  margin-bottom: var(--gutter);
}
.articlle-2-content-header-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter);
}
.articlle-2-content figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Reusable reveal for images that remain inside the viewport edges. */
.image-frame-reveal {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.image-frame-reveal__frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 0 clamp(1rem, 1.25vw, 2rem) var(--primary-color);
  pointer-events: none;
  transform-origin: center;
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .image-frame-reveal__frame {
    display: none;
  }
}
@media (width < 992px) {
  .articlle-2-content-header {
    justify-content: flex-start;
  }
  .articlle-2-content-header-content {
    grid-template-columns: 1fr;
  }
}

@media (width > 991px) {
  .page-hero-section-order-lg-2 .page-hero-image {
    order: 2;
  }
}
.page-hero-section-order-lg-2 .page-hero-image figure {
  margin-left: 0;
  margin-right: calc(((100vw - var(--container-width)) / 2) * -1);
}
@media (width < 1721px) {
  .page-hero-section-order-lg-2 .page-hero-image figure {
    margin-right: calc(var(--gutter) * -1);
  }
}
.page-hero-section-order-lg-2 .page-hero-image figure.m-0 {
  margin: 0 !important;
}
.page-hero-section-order-lg-2 .page-hero-image figure.m-0 img {
  object-fit: none;
}

.page-hero-section .page-hero-image figure.m-0 {
  margin-left: 0;
}

/* Framed images always cover the full reveal area. */
.image-frame-reveal > img,
.page-hero-section .page-hero-image figure.image-frame-reveal > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-image-article {
  display: flex;
}
.intro-image-article-section {
  padding: 0;
  min-height: 100dvh;
  overflow: hidden;
}
.intro-image-article-section .container {
  min-height: 100dvh;
  display: flex;
  flex-wrap: nowrap;
}
.intro-image-article-section .intro-image-article {
  min-width: 100vw;
  flex: 0 0 auto;
  height: 100dvh;
}
.intro-image-article-image {
  max-width: calc(35vw + 11rem);
  padding-left: 20rem;
}
.intro-image-article .intro-image-article-content {
  flex: 1 0 0%;
  display: grid;
  place-items: center;
}
.intro-image-article .intro-image-article-content article {
  width: 100%;
  max-width: 73rem;
  padding: var(--gutter);
}
.intro-image-article-image figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.intro-image-article-image {
  position: relative;
}
.intro-image-article-image h1,
.intro-image-article-image h2 {
  font-size: var(--h1);
  line-height: 1;
  color: var(--primary-color);
  font-family: var(--secondary-font-medium);
}

@media (width < 1200px) {
  .intro-image-article-image {
    padding-left: 8rem;
  }
  .intro-image-article-image h1,
  .intro-image-article-image h2 {
    left: 0;
  }
  .intro-image-article-section .container {
    flex-direction: column;
  }
}
@media (width > 991px) {
  .intro-image-article-image h1,
  .intro-image-article-image h2 {
    position: absolute;
    left: 10rem;
    top: 0;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    white-space: nowrap;
    transform: rotate(180deg);
  }
}
@media (width > 1199px) {
  .intro-image-article-section .container {
    padding-top: 0;
    padding-bottom: 0;
  }
  .intro-image-article-section .intro-image-article {
    gap: var(--lg-space);
  }
  .intro-image-article-image {
    display: flex;
    align-items: center;
  }
  .intro-image-article-image h1,
  .intro-image-article-image h2 {
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
  }
  .intro-image-article .intro-image-article-content {
    place-items: center start;
  }
  .intro-image-article .intro-image-article-content article {
    max-width: 58rem;
    padding-inline: 0;
  }
  .intro-image-article .article-text {
    max-width: 100%;
    margin-inline: 0;
  }
}
@media (width >= 1300px) {
  .intro-image-article-image {
    flex: 0 0 auto;
    width: calc(var(--xl-space) + var(--lg-img));
    max-width: none;
    padding-left: var(--xl-space);
  }
  .intro-image-article-image h1,
  .intro-image-article-image h2 {
    left: 0;
  }
  .intro-image-article-image figure {
    width: var(--lg-img);
    height: calc(100dvh - (var(--lg-space) * 2));
  }
}
@media (width < 992px) {
  .intro-image-article-section .intro-image-article {
    height: auto;
  }
  .intro-image-article .intro-image-article-content article {
    padding-left: 0;
    max-width: 100%;
  }
  .intro-image-article-image {
    max-width: 100%;
    padding-left: 0;
  }
  .intro-image-article-image h1,
  .intro-image-article-image h2 {
    margin-bottom: var(--gutter);
  }
  .btn.btn-primary.btn-o.mt-lg {
    margin-top: var(--gutter);
  }
}

.btn.btn-primary.btn-o {
  background-color: transparent;
  background-image: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-color)
  );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0 100%;
  transition:
    background-size 280ms ease,
    color 200ms ease;
}
.btn.btn-primary.btn-o:hover,
.btn.btn-primary.btn-o:focus-visible {
  background-size: 100% 100%;
  color: var(--body-color);
}
.btn.btn-primary.btn-o svg path {
  stroke: currentColor;
}
@media (prefers-reduced-motion: reduce) {
  .btn.btn-primary.btn-o {
    transition: none;
  }
}

.home-hero-section {
  height: 100dvh;
  overflow: hidden;
  position: relative;
}
.home-hero-section-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: var(--lg) var(--gutter);
  background-color: rgba(255, 255, 240, 0.06);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}
.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  will-change: filter, transform;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.home-hero-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: var(--primary-color-dark);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
}
.hero-section-content-block {
  width: 100%;
  max-width: 98rem;
  text-align: center;
}
.hero-section-content-block-headding {
  position: relative;
  padding: 0 var(--sm);
}
.hero-section-content-block-headding::before,
.hero-section-content-block-headding::after {
  width: 3.6rem;
  height: 3.3rem;
  position: absolute;
  content: "";
}
.hero-section-content-block-headding::before {
  background: url(../images/quote-icon-left.png) center center no-repeat;
  background-size: 100% 100%;
  left: 0;
  top: 0;
}
.hero-section-content-block-headding::after {
  background: url(../images/quote-icon-right.png) center center no-repeat;
  background-size: 100% 100%;
  right: 0;
  bottom: 0;
}
.hero-section-content-block h1,
.hero-section-content-block p {
  color: var(--body-color);
}
.hero-section-content-block-headding h1 {
  font-family: var(--secondary-font-medium);
  line-height: 1;
}

@media (width < 1300px) {
  .intro-image-article-image {
    max-width: 100%;
    width: 50rem;
    padding-left: 8rem;
  }
  .intro-image-article-image h1,
  .intro-image-article-image h2 {
    left: 0;
    font-size: var(--h2);
  }
  .intro-image-article-image h1,
  .intro-image-article-image h2 {
    margin-bottom: var(--gutter-half);
  }
}
@media (width < 1200px) {
  .intro-image-article-section .intro-image-article {
    min-height: auto;
    height: auto;
  }
  .intro-image-article-section .intro-image-article:not(:last-child) {
    margin-bottom: var(--lg-space);
  }
  .intro-image-article-image figure {
    height: auto;
  }
}
@media (width < 992px) {
  .intro-image-article-image {
    width: 35vw;
    padding-left: 0;
  }
  .intro-image-article-content {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}
@media (width < 768px) {
  .intro-image-article-section .intro-image-article {
    flex-direction: column;
  }
  .intro-image-article .intro-image-article-content {
    padding-left: 0;
  }
  .intro-image-article-image {
    width: 70vw;
  }
}

.page-hero-section-absolute-image .page-hero-image {
  position: relative;
}
.page-hero-section-absolute-image .page-hero-image .absolute-image-parallax {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, -50%);
  width: 20vw;
  aspect-ratio: 1;
}
.page-hero-section-absolute-image .absolute-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
}
.page-hero-section-absolute-image .absolute-image > img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-section-absolute-image .absolute-image-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 0 2rem var(--primary-color);
  pointer-events: none;
  transform-origin: center;
  will-change: transform, opacity;
}
.page-hero-section-absolute-image .article-text {
  margin-inline: 0;
}
.page-hero-section-absolute-image .page-hero-content {
  padding-left: clamp(10rem, 12vw, 20rem);
}
@media (width < 1400px) {
  .page-hero-section-absolute-image .page-hero-image .absolute-image-parallax {
    transform: translate(20%, -50%);
  }
  .page-hero-section-absolute-image .absolute-image-frame {
    box-shadow: inset 0 0 0 1rem var(--primary-color);
  }
}
@media (width < 992px) {
  .page-hero-section-absolute-image {
    padding-top: var(--lg-space);
  }
  .page-hero-section-absolute-image .page-hero-image .absolute-image-parallax {
    display: none;
  }
  .page-hero-section-absolute-image .page-hero-content {
    padding-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-section-absolute-image .absolute-image-frame {
    display: none;
  }
  .page-hero-section-absolute-image .absolute-image {
    will-change: auto;
  }
}

/* Header */
:root {
  --header-height: 6.4rem;
}
header {
  height: var(--header-height);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--body-color);
  display: flex;
  align-items: center;
  z-index: 99;
  transform: translateY(0);
}
header.is-ready {
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}
header.is-hidden {
  transform: translateY(-100%);
}
.header-scrolled {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 15%);
}
header + * {
  margin-top: var(--header-height);
}
header .container {
  display: flex;
  align-items: center;
}
nav {
  display: flex;
  align-items: center;
  gap: 0 2.4rem;
}
.logo {
  display: flex;
  align-items: center;
}
.logo a {
  display: flex;
}
nav > a,
.language-drawer-trigger,
.product-link {
  display: flex;
  align-items: center;
  line-height: 1;
  height: var(--header-height);
  white-space: nowrap;
  font-size: var(--fs-lg);
  color: var(--text-color);
  text-transform: uppercase;
  padding: 0 2rem;
  transition: var(--transition);
}
.language-drawer-trigger {
  cursor: pointer;
}

nav > a:hover,
.language-drawer-trigger:hover,
.product-link:hover {
  color: #f8d34d;
}
.nav-draw-link {
  position: relative;
}
.nav-draw-link__label {
  position: relative;
  z-index: 1;
}
.nav-draw-link__line {
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: calc(50% + 0.55em);
  height: 0.7rem;
  color: #f8d34d;
  pointer-events: none;
}
.nav-draw-link__line svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.nav-draw-link__line path {
  vector-effect: non-scaling-stroke;
}
header .language {
  margin-left: auto;
}
header .product-link,
header nav {
  margin-left: 6vw;
}
@media (width < 1200px) {
  .logo a img {
    max-width: 22rem;
  }
  nav > a,
  .language-drawer-trigger,
  .product-link {
    font-size: var(--fs-md);
  }
  nav {
    gap: 0 1.5rem;
  }
  nav > a,
  .language-drawer-trigger,
  .product-link {
    padding: 0 1.2rem;
  }
  .nav-draw-link__line {
    left: 1.2rem;
    right: 1.2rem;
  }
}
@media (width > 991px) {
  .product-link::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 100%;
    background-color: var(--primary-color);
    margin-right: 0.8rem;
  }
  nav > :last-child {
    display: none;
  }
}
@media (width < 992px) {
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    background-color: var(--body-color);
    gap: 4vh 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
  }
  header nav a {
    font-size: clamp(2rem, 4vw, 4vw);
  }
  header nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header .product-link {
    margin-left: var(--gutter-half);
  }
  .product-link {
    display: none;
  }
}

header.home-header {
  background-color: var(--body-color);
  position: fixed;
  will-change: transform;
}
header.home-header + * {
  margin-top: 0;
}
header.home-header .logo a {
  display: grid;
}
header.home-header .logo a img {
  grid-area: 1 / 1;
  transition: opacity 180ms ease;
}
header.home-header .logo-img {
  display: block;
  opacity: 1;
}
header.home-header .logo-index {
  opacity: 0;
}
header.home-header.is-at-top {
  background-color: transparent;
  box-shadow: none;
}
header.home-header.is-at-top .logo-img {
  opacity: 0;
}
header.home-header.is-at-top .logo-index {
  opacity: 1;
}
@media (width > 991px) {
  header.home-header.is-at-top nav > a,
  header.home-header.is-at-top .language-drawer-trigger,
  header.home-header.is-at-top .product-link {
    color: var(--body-color);
  }
  .product-link::before {
    background-color: var(--primary-color);
  }
  .product-link:hover::before {
    background-color: #f8d34d;
  }
  header.home-header.is-at-top .product-link::before {
    background-color: var(--body-color);
  }
}
header.home-header.is-at-top nav > a,
header.home-header.is-at-top .language-drawer-trigger,
header.home-header.is-at-top .product-link {
    color: var(--body-color);
}
header.home-header.is-at-top .burger::before,
header.home-header.is-at-top .burger::after {
  background-color: var(--body-color);
}

/* Language selector drawer */
.language-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 480ms;
}
.language-drawer.is-active {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.language-drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: var(--primary-color-dark);
  backdrop-filter: blur(0.5rem);
  opacity: 0;
  transition: opacity 420ms ease;
}
.language-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(50rem, 100%);
  height: 100dvh;
  overflow-y: auto;
  padding: clamp(3rem, 4vw, 6.5rem);
  color: var(--primary-color);
  background-color: var(--body-color);
  box-shadow: -1rem 0 4rem rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  transition: transform 480ms cubic-bezier(0.64, 0, 0.78, 0);
  outline: none;
}
.language-drawer-panel::before {
  content: "";
  position: absolute;
  left: -0.3rem;
  top: 0;
  width: 0.4rem;
  height: 100%;
  background-color: var(--body-color);
  clip-path: polygon(48% 0, 100% 8%, 45% 16%, 92% 24%, 40% 33%, 100% 42%, 45% 51%, 92% 61%, 40% 70%, 100% 80%, 48% 90%, 95% 100%, 0 100%, 0 0);
}
.language-drawer.is-active .language-drawer-backdrop {
  opacity: 0.62;
}
.language-drawer.is-active .language-drawer-panel {
  transform: translateX(0);
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.language-drawer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
  margin-bottom: var(--md-space);
}
.language-drawer-heading p {
  font-size: var(--fs-lg);
}
.language-drawer-close {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 2.6rem;
  line-height: 1;
  transition: transform 180ms ease;
}
.language-drawer-close:hover {
  transform: rotate(90deg);
}
.language-drawer-close:focus-visible {
  outline: 0.1rem solid currentColor;
  outline-offset: 0.2rem;
}
.language-drawer-list {
  margin: 0;
  padding: 0;
}
.language-drawer-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
  min-height: 8.6rem;
  padding: 2rem 0.8rem;
  color: var(--primary-color);
  border-bottom: 0.1rem solid rgba(128, 135, 143, 0.28);
  font-size: var(--fs-lg);
  text-transform: uppercase;
  transition: padding 180ms ease, color 180ms ease;
}
.language-drawer-option:hover,
.language-drawer-option:focus-visible {
  padding-left: 1.6rem;
  color: var(--text-color);
}
.language-drawer-option-mark {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  border: 0.1rem solid currentColor;
  border-radius: 50%;
}
.language-drawer-option.is-active .language-drawer-option-mark {
  background-color: currentColor;
}
@media (width < 576px) {
  .language-drawer-panel {
    width: 100%;
    padding: var(--gutter);
  }
}
@media (prefers-reduced-motion: reduce) {
  .language-drawer-backdrop,
  .language-drawer-panel,
  .language-drawer-close,
  .language-drawer-option {
    transition: none;
  }
  .language-drawer {
    transition: none;
  }
}

@media (width < 992px) {
  header.home-header nav > a {
    color: var(--text-color);
  }
  .menu-active header.home-header nav > a {
    color: var(--primary-color);
  }
  .menu-active header.home-header .burger::before,
  .menu-active header.home-header .burger::after {
    background-color: var(--text-color);
  }
}

@media (prefers-reduced-motion: reduce) {
  header.is-ready,
  header.home-header .logo a img {
    transition: none;
  }
}
