body {
  background-color: rgb(249, 236, 236);
}

@font-face {
  font-family: "Tusker Grotesk";
  src: url("/assets/fonts/TuskerGrotesk-6500Medium.woff2") format("woff2"), url("/assets/fonts/TuskerGrotesk-6500Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --floating-icon-width: 120px;
}
@media screen and (max-width: 959px) {
  :root {
    --floating-icon-width: 64px;
  }
}

.t-text {
  font-family: var(--blockquote-font-family, var(--font-family));
  font-style: var(--blockquote-font-style, var(--font-style, normal));
  font-weight: var(--blockquote-font-weight, var(--font-weight, 400));
  color: var(--blockquote-text-color, var(--text-color, #000));
  font-size: calc(var(--blockquote-font-size, var(--font-size, 16px)) * var(--font-size-scale, 1));
  letter-spacing: var(--blockquote-letter-spacing, var(--letter-spacing, 0));
  text-transform: var(--blockquote-text-transform, var(--text-transform, none));
  text-decoration-line: var(--blockquote-text-decoration, var(--text-decoration, initial));
  text-decoration-style: var(--blockquote-text-decoration-style, var(--text-decoration-style, initial));
  text-decoration-color: var(--blockquote-text-decoration-color, var(--text-decoration-color, initial));
  text-decoration-thickness: var(--blockquote-text-decoration-thickness, var(--text-decoration-thickness, initial));
  -webkit-text-decoration-skip-ink: var(--blockquote-text-decoration-skip-ink, var(--text-decoration-skip-ink, initial));
          text-decoration-skip-ink: var(--blockquote-text-decoration-skip-ink, var(--text-decoration-skip-ink, initial));
  text-underline-offset: var(--blockquote-text-decoration-offset, var(--text-decoration-offset, initial));
  line-height: var(--blockquote-line-height, var(--line-height, 1.2em));
  text-align: var(--blockquote-text-alignment, var(--text-alignment, start));
  -webkit-text-stroke-width: var(--text-stroke-width, initial);
  -webkit-text-stroke-color: var(--text-stroke-color, initial);
  font-feature-settings: var(--font-open-type-features, initial);
  font-variation-settings: var(--font-variation-axes, normal);
  text-wrap: var(--text-wrap-override, var(--text-wrap));
}
@media screen and (max-width: 959px) {
  .t-text {
    font-family: var(--mobile-font-family, var(--font-family));
    font-style: var(--mobile-font-style, var(--font-style, normal));
    font-weight: var(--mobile-font-weight, var(--font-weight, 400));
    color: var(--mobile-text-color, var(--text-color, #000));
    font-size: calc(var(--mobile-font-size, var(--font-size, 16px)) * var(--font-size-scale, 1));
    letter-spacing: var(--mobile-letter-spacing, var(--letter-spacing, 0));
    text-transform: var(--mobile-text-transform, var(--text-transform, none));
    text-decoration-line: var(--mobile-text-decoration, var(--text-decoration, initial));
    text-decoration-style: var(--mobile-text-decoration-style, var(--text-decoration-style, initial));
    text-decoration-color: var(--mobile-text-decoration-color, var(--text-decoration-color, initial));
    text-decoration-thickness: var(--mobile-text-decoration-thickness, var(--text-decoration-thickness, initial));
    -webkit-text-decoration-skip-ink: var(--mobile-text-decoration-skip-ink, var(--text-decoration-skip-ink, initial));
            text-decoration-skip-ink: var(--mobile-text-decoration-skip-ink, var(--text-decoration-skip-ink, initial));
    text-underline-offset: var(--mobile-text-decoration-offset, var(--text-underline-offset, initial));
    line-height: var(--mobile-line-height, var(--line-height, 1.2em));
    text-align: var(--mobile-text-alignment, var(--text-alignment, start));
    -webkit-text-stroke-width: var(--mobile-text-stroke-width, var(--text-stroke-width, initial));
    -webkit-text-stroke-color: var(--mobile-text-stroke-color, var(--text-stroke-color, initial));
    font-feature-settings: var(--mobile-font-open-type-features, var(--font-open-type-features, initial));
    font-variation-settings: var(--mobile-font-variation-axes, var(--font-variation-axes, normal));
    text-wrap: var(--mobile-text-wrap-override, var(--text-wrap));
  }
}

.header {
  top: 0;
  z-index: 100;
  background-color: rgb(249, 236, 236);
  position: fixed;
  width: 100%;
}
.header .link-item {
  font-family: "Tusker Grotesk", "Tusker Grotesk Placeholder", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #000;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
}
.header .logo {
  width: 159px;
  height: 140px;
}
.header ul {
  margin: 0;
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 64px;
  height: -moz-min-content;
  height: min-content;
  justify-content: center;
  overflow: visible;
  padding: 0;
  position: relative;
}
.header ul li {
  text-decoration: none;
  list-style: none;
}

.mobile-header {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  background-color: rgb(225, 5, 0);
  height: 99px;
  z-index: 20;
}
@keyframes bounceOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-120%);
    opacity: 0;
  }
}
@keyframes bounceIn {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.mobile-header .menu-toggle {
  cursor: pointer;
}
.mobile-header .menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  transition: 0.3s ease;
}
.mobile-header .menu-toggle span::before {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  transition: 0.3s ease;
  content: "";
  top: -10px;
}
.mobile-header .menu-toggle span::after {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  transition: 0.3s ease;
  content: "";
  top: 10px;
}
.mobile-header .mobile-nav {
  position: fixed;
  inset: 0;
  background: #d10b0b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-120%);
  opacity: 0;
  z-index: 30;
  transition: transform 200ms ease-in;
}
.mobile-header .mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  margin: 15px 0;
  font-weight: bold;
}
.mobile-header .mobile-nav.open {
  animation: bounceIn 0.2s forwards;
}
.mobile-header .mobile-nav.closing {
  animation: bounceOut 0.2s forwards;
}
.mobile-header .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.noise::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("/assets/images/hero-back.png");
  opacity: 0.15;
  mix-blend-mode: overlay;
  border-radius: inherit;
  z-index: 5;
}

.hero {
  align-content: center;
  align-items: center;
  background-color: #f8eceb;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 26px;
  height: -moz-min-content;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 128px;
  position: relative;
  width: 100%;
}
.hero .hero-title {
  width: 600px;
}
.hero .hero-content {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 32px;
  height: 376px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 100%;
}
.hero .hero-space {
  transform: translateY(-35px);
}
.hero .hero-space .arch {
  width: 782px;
  height: 481px;
  border: 1px solid #000;
  border-radius: 0 0 500px 500px;
  will-change: transform;
  position: relative;
}
.hero .hero-space .arch .img {
  bottom: 0%;
  left: 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  will-change: transform;
  opacity: 1;
}
.hero .hero-space .arch .img img {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .hero {
    padding: 20px;
    gap: 0;
  }
  .hero .hero-title {
    width: 320px;
  }
  .hero .hero-content {
    height: auto;
    gap: 20px;
  }
  .hero .hero-space {
    transform: translateY(-5px);
  }
  .hero .hero-space .arch {
    width: 300px;
    height: 200px;
  }
}

.t-container {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}
.t-container .backdrop {
  width: 100%;
  position: absolute;
  transform: scale(1.13526);
}
.t-container .backdrop img {
  width: 100%;
  height: 100%;
}
.t-container .content {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 24px;
  height: -moz-min-content;
  height: min-content;
  justify-content: center;
  left: 128px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  width: 580px;
}

.ordered-info-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 959px) {
  .ordered-info-cards {
    flex-direction: column;
  }
  .ordered-info-cards [arrow] {
    transform: rotate(90deg);
  }
}
.ordered-info-cards .info-card {
  display: grid;
  place-items: center;
  border: 1px solid #000;
  border-radius: 9999px;
  height: 320px;
  width: 320px;
  transition: all 200ms ease-in;
}
.ordered-info-cards .info-card:hover {
  transform: scale(1.1);
}

.products {
  position: relative;
}
.products .title {
  height: auto;
  left: 50%;
  position: absolute;
  top: 128px;
  transform: translate(-50%);
  white-space: pre-wrap;
  width: 100%;
  word-break: break-word;
  word-wrap: break-word;
}
.products .list {
  position: relative;
  width: 100%;
  height: 1000px;
}
.products .list .product {
  width: 33.33%;
  position: absolute;
  will-change: transform;
  display: grid;
  place-items: center;
}
.products .list .product img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: fill;
     object-fit: fill;
}
.products .list .product .product-title {
  padding-left: 20px;
  border-left: 1px solid rgb(225, 6, 0);
}
@media screen and (max-width: 959px) {
  .products .title {
    position: unset;
    text-align: center;
    width: 100%;
    transform: none !important;
  }
  .products .list {
    height: 100%;
    padding-bottom: 50px;
  }
  .products .list .product {
    position: unset;
    width: 100%;
    transform: none !important;
  }
}

.contact-form label {
  color: #fff;
}
.contact-form .form-control {
  background-color: unset;
  color: #fff;
  border: unset;
  border-radius: 0;
  border-bottom: 1px solid #fff;
}
.contact-form .form-control:focus::-moz-placeholder {
  color: #fff;
}
.contact-form .form-control:focus::placeholder {
  color: #fff;
}
.contact-form .form-control {
  box-shadow: none;
}
.contact-form .submit-button {
  background: none;
  border-width: 0px;
  padding: 0px;
  align-content: center;
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0px;
  height: 80px;
  justify-content: center;
  overflow: visible;
  padding: 0;
  position: relative;
}

.footer .links-parent {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 436px;
  height: -moz-min-content;
  height: min-content;
  justify-content: center;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 100%;
}
.footer .links-parent a {
  flex: none;
  height: 32px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.footer .links-parent .left {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  height: -moz-min-content;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
  width: -moz-min-content;
  width: min-content;
}
.footer .links-parent .right {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  height: -moz-min-content;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
  width: -moz-min-content;
  width: min-content;
}
.footer .footer-logo {
  margin-top: 100px;
  height: 400px;
}
@media screen and (min-width: 960px) {
  .footer {
    padding: 130px;
  }
}
@media screen and (max-width: 959px) {
  .footer .footer-logo {
    height: 200px;
  }
  .footer .links-parent {
    flex-direction: column;
    gap: 10px;
    align-items: start;
    padding-left: 20px;
  }
  .footer .links-parent .right {
    padding-top: 10px;
    border-top: 1px solid #000;
  }
  .footer .links-parent .right,
  .footer .links-parent .left {
    flex-direction: column;
  }
}

.loc-swiper {
  overflow: visible !important;
}
.loc-swiper .swiper-slide {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/7;
  opacity: 0.85;
  transition: opacity 0.4s;
}
.loc-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.85);
}
.loc-swiper .swiper-slide-active {
  opacity: 1;
}

.loc-slide__overlay {
  position: absolute;
  inset: 0;
  background: #e10600;
  mix-blend-mode: multiply;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}

.loc-slide__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
  z-index: 2;
}

.loc-slide__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  z-index: 3;
  color: #fff;
}

.loc-slide__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}

.loc-slide__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.loc-slide__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.loc-slide__hours li {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 1.2vw, 15px);
  opacity: 0.9;
}

.loc-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 70px;
}

.loc-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 0;
}
.loc-nav__btn:hover {
  opacity: 1;
}
.loc-nav__btn svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.loc-nav__btn.swiper-button-disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 768px) {
  .loc-swiper .swiper-slide {
    aspect-ratio: 4/3;
  }
  .loc-swiper {
    padding: 0 20px !important;
  }
  .loc-nav {
    padding-left: 20px;
  }
}
.float {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  z-index: 10;
  transform-origin: center;
  transform: translate(-50%, -50%);
}
.float svg {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 959px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media screen and (min-width: 960px) {
  .hidden-desktop {
    display: none !important;
  }
}/*# sourceMappingURL=main.css.map */