html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

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

img {
  max-width: 100%;
}

::-moz-selection {
  background-color: rgba(37, 37, 37, 0.77);
  color: #fff;
}

::selection {
  background-color: rgba(37, 37, 37, 0.77);
  color: #fff;
}

:root {
  --red: #380106;
  --copper: #C27B4D;
  --white: #F7F7F7;
  --black: #161616;
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
body ::selection, body::selection {
  background-color: var(--black);
  color: var(--white);
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100svh;
}
body.is-loading, body.noscroll {
  overflow: hidden;
}
@media (max-width: 767px) {
  body.mobile-noscroll {
    overflow: hidden;
  }
}

main {
  flex: 1;
}
@media (min-width: 768px) {
  main .mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  main .desktop {
    display: none;
  }
}

.label {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  line-height: 1.46;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main.e404 {
  display: flex;
  align-items: center;
  justify-content: center;
}
main.e404.initializing .methods,
main.e404.initializing .body {
  opacity: 0;
  pointer-events: none;
}
main.e404 .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
main.e404 a {
  color: var(--white);
  transition: 0.35s;
}
main.e404 a:hover {
  color: var(--copper);
}
main.e404 a:active {
  transform: scale(0.95);
  transition: 0.15s;
}
main.e404 .body {
  padding: 66px 40px 106px;
}
main.e404 .action {
  margin-top: 24px;
}
main.e404 .action a {
  text-decoration: none;
}
@media (min-width: 768px) {
  main.e404 .body {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 1024px) {
  main.e404 .wrapper {
    padding: 0 2.5vw;
  }
  main.e404 .body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 7.01vw;
    padding-right: 7.01vw;
  }
}
@media (min-width: 1200px) {
  main.e404 .wrapper {
    padding: 0 72px;
  }
  main.e404 .body {
    width: 66%;
    padding-left: 5.97vw;
    padding-right: 5.97vw;
  }
}
@media (min-width: 1440px) {
  main.e404 .body {
    padding-left: 86px;
    padding-right: 86px;
  }
  main.e404 .text,
  main.e404 .form {
    width: 100%;
    max-width: 681px;
    margin-left: auto;
    margin-right: auto;
  }
}

main.home {
  overflow: hidden;
}
main.home.initializing .logo,
main.home.initializing .menu {
  opacity: 0;
  pointer-events: none;
}
main.home.show-info .info {
  opacity: 1;
  pointer-events: auto;
}
main.home .hero {
  position: relative;
  width: 100vw;
  height: 100dvh;
}
main.home .hero .image {
  position: absolute;
  transform: scale(1.1);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0s ease 5s, transform 0s ease-out 5s;
}
main.home .hero .image.is-active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
  transition: opacity 0.8s linear, transform 12s ease-out;
}
main.home .hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.home .hero:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  main.home .hero:after {
    top: auto;
    bottom: 0;
    height: 108px;
    background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
main.home .hero .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 10px;
  width: 100%;
  height: 100%;
  z-index: 4;
}
main.home .hero .logo svg {
  display: flex;
  width: 280px;
  height: auto;
  color: var(--white);
  overflow: visible;
}
main.home .hero .logo svg path,
main.home .hero .logo svg polygon {
  stroke: currentColor;
  stroke-width: 2px;
  fill: currentColor;
}
@media screen and (min-width: 1024px) {
  main.home .hero .logo {
    padding-top: 0;
  }
  main.home .hero .logo svg {
    width: 377px;
  }
}
main.home .hero .menu {
  z-index: 4;
}
main.home .hero .menu button {
  color: var(--white);
}
main.home .info {
  display: flex;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #543119;
  background-color: #D5C996;
  opacity: 0;
  pointer-events: none;
  transition: 1s;
}
main.home .info .text {
  display: flex;
  flex-direction: column;
  max-width: 797px;
  padding: 0 45px;
  margin: auto;
  text-align: center;
}
main.home .info .p {
  font-size: 14px;
  line-height: 1.375;
  letter-spacing: 0;
}
main.home .info .p p + p {
  margin-top: 0.9em;
}
@media screen and (min-width: 768px) {
  main.home .info .p {
    font-size: 16px;
  }
}
main.home .info .links {
  margin-top: 46px;
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 11px;
}
@media screen and (min-width: 768px) {
  main.home .info .links {
    margin-top: 71px;
    flex-direction: row;
    justify-content: center;
    column-gap: 36px;
  }
}
main.home .info .links a {
  font-size: 14px;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
  color: inherit;
  transition: 0.35s;
}
@media screen and (min-width: 768px) {
  main.home .info .links a {
    font-size: 16px;
  }
}
main.home .info .links a:hover {
  opacity: 0.8;
}
main.home .info .links a:active {
  transform: scale(0.95);
  transition: 0.15s;
}
main.home .menu {
  position: absolute;
  top: 30px;
  left: 0;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  main.home .menu {
    top: auto;
    bottom: 50px;
  }
}
main.home .menu button {
  appearance: none;
  padding: 0;
  border: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.22875em;
  text-transform: uppercase;
  font-weight: 400;
  color: #543119;
  background-color: transparent;
  cursor: pointer;
  transition: 0.35s;
}
@media screen and (min-width: 768px) {
  main.home .menu button {
    font-size: 16px;
  }
}
main.home .menu button:hover {
  opacity: 0.8;
}
main.home .menu button:active {
  transform: scale(0.9);
  transition: 0.15s;
}