@charset "UTF-8";
/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  font-family: inherit;
  color: inherit;
  background: none;
  outline: inherit;
  cursor: pointer;
}
[hidden] {
  display: none;
}
ion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25em;
  height: 1.25em;
  font-size: inherit;
  fill: currentColor;
  stroke: currentColor;
  flex-shrink: 0;
}
ion-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Fonts */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/InterVariable.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/InterVariable-Italic.woff2") format("woff2");
}
/* Root */
:root {
  font-size: clamp(14px, 0.833vw, 16px);
  line-height: 1.3;
  --black: #000000;
  --white: #ffffff;
  --angora-white: #f8f7f6;
  --brand-color: #ccff00;
}

/* Typography */
h1 {
  font-size: clamp(2.25rem, 2.5vw, 3rem);
}

h2 {
  font-size: clamp(2rem, 2.083vw, 2.5rem);
}

h3 {
  font-size: clamp(1.75rem, 1.667vw, 2rem);
}

h4 {
  font-size: clamp(1.375rem, 1.25vw, 1.5rem);
}

h5,
h6 {
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

p,
a {
  font-size: 1rem;
}

a {
  text-decoration: none;
}

/* Body */
body {
  color: var(--black);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  background-color: var(--white);
  overflow-x: hidden;
}

/* Cookies */
.cookies {
  width: 100%;
  max-width: calc((100% - 60px) / 4);
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.11);
  overflow: hidden;
  z-index: 999 !important;
}
html.cookies-accepted .cookies {
  display: none !important;
}
.cookies__actions {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}
.cookies__actions--tab {
  flex: 1;
  padding: 15px;
  font-size: 0.875rem;
  background: none;
  border: 0;
  cursor: pointer;
  transition: background 0.33s ease;
  opacity: 0.5;
}
.cookies__actions--tab:hover {
  color: var(--black);
}
.cookies__actions--tab.active {
  margin-bottom: -1px;
  background: none;
  border-bottom: 1px solid var(--black);
  opacity: 1;
}
.cookies__content {
  padding: 15px;
}
.cookies__content--panel {
  display: none;
}
.cookies__content--panel.active {
  display: block;
}
.cookies__content--panel__notice {
  margin-bottom: 30px;
  font-size: 0.875rem;
  opacity: 0.75;
}
.cookies__content--panel__agreements {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cookies__content--panel__agreements label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--black);
  cursor: pointer;
}
.cookies__content--panel__agreements label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  transition: background 0.33s ease, border-color 0.33s ease;
  cursor: pointer;
}
.cookies__content--panel__agreements label input[type=checkbox]:checked {
  background: var(--black);
  border-color: var(--black);
}
.cookies__content--panel__agreements label input[type=checkbox]:checked::after {
  content: "";
  width: 5px;
  height: 9px;
  position: absolute;
  top: 1px;
  left: 4px;
  border: 1px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.cookies__content--panel__agreements label input[type=checkbox]:disabled {
  cursor: not-allowed;
}
.cookies__content--panel__agreements label span {
  font-size: 0.875rem;
}
.cookies__content--panel__accordion {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cookies__content--panel__accordion--header {
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--black);
  background: none;
  border: 0;
  cursor: pointer;
}
.cookies__content--panel__accordion--header::after {
  content: "+";
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--black);
}
.is-open > .cookies__content--panel__accordion--header::after {
  content: "−";
}
.cookies__content--panel__accordion--body {
  overflow: hidden;
}
.cookies__content--panel__accordion--body p {
  padding-bottom: 15px;
  font-size: 0.875rem;
  opacity: 0.75;
}
.cookies__about p {
  font-size: 0.875rem;
  opacity: 0.75;
}
.cookies__about p a {
  font-size: 0.875rem;
  text-decoration: none;
}
.cookies__about p a:hover {
  text-decoration: underline;
}
.cookies__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
}
.cookies__cta--accept {
  width: 100%;
  padding: 15px;
  font-size: 0.875rem;
  color: var(--white);
  background: var(--black);
  border-radius: 5px;
  transition: all 0.33s ease-in-out;
  cursor: pointer;
}
.cookies__cta--accept:hover {
  background: var(--brand-color);
  color: var(--black);
}
.cookies__cta--stack {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookies__cta--stack__accept-selected, .cookies__cta--stack__reject {
  flex: 1;
  padding: 15px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 5px;
  color: var(--black);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.33s ease-in-out;
}
.cookies__cta--stack__accept-selected:hover, .cookies__cta--stack__reject:hover {
  color: var(--white);
  background: var(--black);
}
@media (max-width: 1024px) {
  .cookies {
    max-width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--white);
    border-radius: 0;
  }
  .cookies__cta--stack {
    flex-direction: column;
  }
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Container */
.app {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Navigation */
.navigation {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
}
.navigation > * {
  pointer-events: auto;
}
.navigation__logo {
  width: auto;
  height: 30px;
  text-decoration: none;
}
.navigation__logo img {
  height: 100%;
  width: auto;
  opacity: 1;
  transition: opacity 0.33s ease;
}
.navigation__logo img:hover {
  opacity: 0.75;
}
.navigation__contact {
  margin-left: 90px;
  font-size: 1rem;
  color: var(--black);
  text-decoration: none;
  transition: color 0.33s ease;
}
.navigation__contact:hover {
  color: rgba(26, 26, 26, 0.75);
}
.navigation__catalog {
  margin-left: auto;
  font-size: 1rem;
  font-family: inherit;
  padding: 0.5rem 0.938rem;
  border: 1px solid var(--black);
  border-radius: 1.875rem;
  color: var(--angora-white);
  background-color: var(--black);
  transition: background-color 0.33s ease;
  cursor: pointer;
}
.navigation__catalog:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
@media (max-width: 1024px) {
  .navigation .navigation__contact {
    display: none;
  }
}

/* Hero */
.hero {
  width: 100%;
  height: 100svh;
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}
.hero__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__wrapper--spotlight {
  width: calc(300% + 30px);
  height: calc(300svh + 30px);
  display: flex;
  gap: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
}
.hero__wrapper--spotlight__group {
  height: calc(300svh + 30px);
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 5px;
}
.hero__wrapper--spotlight__group--picture {
  flex: 1;
  position: relative;
  clip-path: inset(0 0 100% 0);
  overflow: hidden;
}
.hero__wrapper--spotlight__group--picture img {
  width: 100%;
  height: 100%;
  position: relative;
  transform: scale(1.25);
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__wrapper--sneakpeak {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.hero__wrapper--sneakpeak p, .hero__wrapper--sneakpeak span {
  color: var(--white);
}
.hero__wrapper--sneakpeak p {
  font-size: 2rem;
  text-align: center;
  opacity: 0;
}
.hero__wrapper--sneakpeak span {
  text-align: left;
  opacity: 0;
}
.hero__wrapper--sneakpeak .word {
  display: inline-block;
}
.hero__wrapper--introduction {
  width: calc(50% - 30px);
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--white);
}
.hero__wrapper--introduction__mouse {
  width: 20px;
  height: 30px;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 9.6px;
  border: 1.5px solid var(--white);
  border-radius: 10px;
}
.hero__wrapper--introduction__mouse::before {
  content: "";
  width: 2px;
  height: 16px;
  position: absolute;
  top: 5px;
  left: 50%;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  animation: scrollWheel 1.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.hero__wrapper--introduction span {
  font-size: 3rem;
}
.hero__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero__wrapper--sneakpeak {
    width: 100%;
    padding: 30px;
  }
  .hero__wrapper--introduction {
    width: calc(100% - 60px);
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
  }
}

@keyframes scrollWheel {
  0% {
    transform: translateX(-50%) translateY(0) scaleY(0);
    opacity: 0;
  }
  20% {
    transform: translateX(-50%) translateY(0) scaleY(0.25);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(0) scaleY(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(19px) scaleY(0);
    opacity: 0;
  }
}
/* Products */
.products {
  width: 100%;
  height: 100svh;
  position: relative;
  margin-top: 300svh;
  background-color: var(--white);
  overflow: hidden;
}
.products__gallery {
  width: 100%;
  height: 100svh;
  position: absolute;
  overflow: hidden;
}
.products__gallery--carousel {
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  list-style: none;
}
.products__gallery--carousel__item {
  aspect-ratio: 1/1;
  height: 33svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.products__gallery--carousel__item img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.products__gallery--navigation {
  width: calc(100% - 60px);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: absolute;
  bottom: 60px;
  left: 30px;
  border: 1px solid var(--black);
  border-radius: 30px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
}
.products__gallery--navigation__reveal, .products__gallery--navigation__previous, .products__gallery--navigation__next {
  padding: 15px 30px;
  transition: color 0.33s ease;
}
.products__gallery--navigation__reveal:hover, .products__gallery--navigation__previous:hover, .products__gallery--navigation__next:hover {
  color: rgba(26, 26, 26, 0.75);
}
.products__gallery--navigation__reveal {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
}
.products__gallery--navigation__reveal--icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: var(--black);
  background-color: var(--brand-color);
  border-radius: 50%;
}
.products__gallery--navigation__reveal--title {
  font-size: 1rem;
  font-weight: 600;
}
.products__gallery--navigation__previous {
  border-right: 1px solid var(--black);
}
.products__gallery--navigation__next {
  border-left: 1px solid var(--black);
}
.products__gallery--navigation__previous, .products__gallery--navigation__next {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .products__gallery--navigation {
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 0;
  }
  .products__gallery--navigation__reveal {
    order: 1;
    border-bottom: 1px solid var(--black);
  }
  .products__gallery--navigation__previous, .products__gallery--navigation__next {
    order: 2;
    width: 50%;
    flex-direction: row;
  }
  .products__gallery--navigation__previous {
    justify-content: flex-start;
    border-right: 1px solid var(--black);
  }
  .products__gallery--navigation__next {
    justify-content: flex-end;
    border-left: none;
  }
}

/* Item */
.item {
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--angora-white);
  z-index: 1000;
}
.item__overview {
  width: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 30px;
  transform: translateY(-50%);
  z-index: 5;
}
.item__overview--summary {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 30px;
}
.item__overview--summary__print {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  transition: color 0.33s ease;
}
.item__overview--summary__print:hover {
  color: rgba(26, 26, 26, 0.75);
}
.item__overview--thumbnail {
  display: flex;
  flex: 2;
  justify-content: flex-end;
  align-items: center;
}
.item__overview--thumbnail img {
  width: 50%;
  height: auto;
  display: block;
}
.item__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(26, 26, 26, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 6;
}
.item__sheet {
  width: 100%;
  height: 50svh;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  position: absolute;
  bottom: -50svh;
  left: 0;
  background: var(--angora-white);
  z-index: 10;
}
.item__sheet--company {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
  padding: 30px;
}
.item__sheet--company__headline {
  font-weight: 600;
}
.item__sheet--company__contact {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  padding: 0;
  list-style: none;
}
.item__sheet--company__contact li a {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  text-decoration: none;
  transition: color 0.33s ease;
}
.item__sheet--company__contact li a:hover {
  color: rgba(26, 26, 26, 0.5);
}
.item__sheet--company__address span, .item__sheet--company__services span {
  display: block;
}
.item__sheet--company__services {
  margin-top: 15px;
}
.item__sheet--company__services span {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.5);
}
.item__sheet--data {
  grid-column: 2/3;
  padding: 30px 30px 120px 30px;
  overflow-y: auto;
}
.item__sheet--data::-webkit-scrollbar {
  width: 3px;
}
.item__sheet--data::-webkit-scrollbar-track {
  background: transparent;
  margin-top: 30px;
  margin-bottom: 120px;
}
.item__sheet--data::-webkit-scrollbar-thumb {
  background: var(--black);
  border-radius: 999px;
}
.item__sheet--data__value {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--black);
}
.item__sheet--data__value:first-child {
  border-top: 1px solid var(--black);
}
.item__sheet--data__value span {
  font-size: 0.875rem;
}
.item__sheet--collapse {
  grid-column: 4;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  font-size: 1.5rem;
  cursor: pointer;
}
.item__actions {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  padding: 15px 30px;
  background: var(--angora-white);
  border-top: 1px solid var(--black);
  z-index: 10;
}
.item__actions--data {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
.item__actions--data__picture {
  width: 90px;
  height: auto;
}
.item__actions--data__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.item__actions--data__title {
  font-size: 1.5rem;
}
.item__actions--data__title span {
  font-size: 0.875rem;
}
.item__actions--controls {
  display: flex;
  align-items: center;
  gap: 30px;
}
.item__actions--controls button {
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
}
.item__actions--controls__details {
  border-bottom: 1px solid var(--black);
  transition: color 0.33s ease, border-color 0.33s ease;
}
.item__actions--controls__details:hover {
  color: rgba(26, 26, 26, 0.5);
  border-color: rgba(26, 26, 26, 0.5);
}
.item__actions--controls__contact {
  padding: 0.5rem 0.938rem;
  border-radius: 1.875rem;
  background-color: var(--brand-color);
  transition: color 0.33s ease;
}
.item__actions--controls__contact:hover {
  color: rgba(26, 26, 26, 0.5);
}
@media (max-width: 1024px), print {
  .item {
    height: 100svh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .item__overview {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 30px;
    gap: 30px;
  }
  .item__overview--summary {
    width: 100%;
    flex: unset;
  }
  .item__overview--thumbnail {
    width: 100%;
    height: auto;
    flex: unset;
    justify-content: center;
  }
  .item__overview--thumbnail img {
    width: 100%;
    height: 100%;
  }
  .item__sheet {
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    bottom: auto;
    left: auto;
    z-index: 1;
    overflow-y: visible;
  }
  .item__sheet--company {
    order: 2;
  }
  .item__sheet--data {
    order: 1;
    overflow: visible;
    padding: 30px;
  }
  .item__sheet--data__value {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .item__sheet--data__value span:nth-child(1) {
    font-weight: 600;
  }
  .item__sheet--collapse {
    display: none;
  }
  .item__actions {
    position: relative;
    bottom: auto;
    border-top: none;
  }
  .item__actions button {
    display: none;
  }
}

/* Footer */
.footer__revealer {
  width: 100%;
  height: 100svh;
  position: relative;
  pointer-events: none;
}

.footer {
  width: 100%;
  height: 100svh;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: var(--white);
  overflow: hidden;
  z-index: 0;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/footer/map.webp") center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}
.footer__wrapper {
  width: 100%;
  position: absolute;
  top: 105px;
  left: 0;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--black);
}
.footer__wrapper--company {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
}
.footer__wrapper--company__contact {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__wrapper--company__contact li a {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  text-decoration: none;
  transition: color 0.33s ease;
}
.footer__wrapper--company__contact li a:hover {
  color: rgba(26, 26, 26, 0.5);
}
.footer__wrapper--company__privacy {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  color: var(--black);
  text-decoration: none;
  transition: color 0.33s ease;
}
.footer__wrapper--company__privacy:hover {
  color: rgba(26, 26, 26, 0.5);
}
.footer__wrapper--company__address span, .footer__wrapper--company__services span {
  display: block;
}
.footer__wrapper--company__services {
  margin-top: 15px;
}
.footer__wrapper--company__services span {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.5);
}
.footer__wrapper--networking {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__wrapper--networking li a {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  text-decoration: none;
  transition: color 0.33s ease;
}
.footer__wrapper--networking li a:hover {
  color: rgba(26, 26, 26, 0.5);
}
.footer__brand {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  color: var(--black);
}
.footer__brand h1 {
  margin: 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

/* Contact */
.contact {
  width: 100%;
  min-height: 100svh;
  padding: 75px 0 0;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: start;
  background-color: var(--angora-white);
}
.contact__company {
  grid-column: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
}
.contact__company--headline {
  font-size: 1rem;
  font-weight: 600;
}
.contact__company--contact {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  padding: 0;
  list-style: none;
}
.contact__company--contact li a {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  text-decoration: none;
  transition: color 0.33s ease;
}
.contact__company--contact li a:hover {
  color: rgba(26, 26, 26, 0.5);
}
.contact__company--address span, .contact__company--services span {
  display: block;
}
.contact__company--services {
  margin-top: 15px;
}
.contact__company--services span {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.5);
}
.contact__panel {
  grid-column: 2/3;
  min-width: 0;
  padding: 30px;
}
.contact__panel--success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.contact__panel--success__icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background-color: var(--brand-color);
  border-radius: 50%;
}
.contact__panel--errors {
  margin-bottom: 30px;
  color: #941c1c;
}
.contact__panel--form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact__panel--form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact__panel--form__field {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.contact__panel--form__field--message {
  height: 120px;
  resize: none;
}
.contact__panel--form__field--input, .contact__panel--form__field--message {
  width: 100%;
  padding: 0 0 8px;
  font-size: 1rem;
  --field-line-color: rgba(26, 26, 26, 0.25);
  background-image: linear-gradient(var(--field-line-color), var(--field-line-color));
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  border-radius: 0;
  cursor: text;
  transition: background-image 0.3s ease;
}
.contact__panel--form__field--input:focus, .contact__panel--form__field--message:focus {
  --field-line-color: var(--black);
}
.contact__panel--form__field--input::-moz-placeholder, .contact__panel--form__field--message::-moz-placeholder {
  color: rgba(26, 26, 26, 0.5);
  opacity: 1;
}
.contact__panel--form__field--input::placeholder, .contact__panel--form__field--message::placeholder {
  color: rgba(26, 26, 26, 0.5);
  opacity: 1;
}
.contact__panel--form__field--input[aria-invalid=true], .contact__panel--form__field--message[aria-invalid=true] {
  --field-line-color: #941c1c;
}
.contact__panel--form__field--error {
  margin-top: 8px;
  font-size: 0.875rem;
  color: #941c1c;
}
.contact__panel--form__submit {
  margin-top: 30px;
}
.contact__panel--form__notice {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.5);
}
.contact__panel--form__notice a {
  font-size: inherit;
  color: var(--black);
  border-bottom: 1px solid var(--black);
}
.contact__panel--form__submit, .contact__panel--success__return {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 0.938rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--black);
  border-radius: 1.875rem;
  background-color: var(--brand-color);
  transition: color 0.33s ease;
  cursor: pointer;
}
.contact__panel--form__submit:hover, .contact__panel--success__return:hover {
  color: rgba(26, 26, 26, 0.5);
}
.contact__panel--form__submit:disabled, .contact__panel--success__return:disabled {
  opacity: 0.5;
  cursor: wait;
}
.contact [hidden] {
  display: none;
}
@media (max-width: 1024px) {
  .contact {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .contact__company {
    order: 2;
  }
  .contact__panel {
    order: 1;
  }
}

/* Privacy policy */
.policy {
  width: 100%;
  min-height: 100svh;
  padding: 105px 30px 30px;
  background-color: var(--angora-white);
}
.policy__wrapper {
  width: 33.333%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 60px;
}
.policy__wrapper--content {
  min-width: 0;
}
.policy__wrapper--content__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}
.policy__wrapper--content__section--title {
  margin-top: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  scroll-margin-top: 105px;
}
.policy__wrapper--content__section--description {
  font-size: 0.75rem;
  margin-top: 15px;
  overflow-wrap: break-word;
}
.policy__wrapper--content__section--description a {
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .policy__wrapper {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }
}

/* Print */
@media print {
  body, html {
    overflow: visible !important;
    height: auto !important;
  }
  .navigation,
  .hero,
  .products,
  .item__actions,
  .item__overview--summary__print,
  .footer__revealer,
  .footer {
    display: none !important;
  }
  .item {
    height: auto !important;
    display: block !important;
    position: static !important;
    overflow: visible !important;
  }
}/*# sourceMappingURL=styles.css.map */