@font-face {
  font-family: "Canela";
  src: url("../fonts/canela/Canela-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Canela";
  src: url("../fonts/canela/Canela-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}


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

:root {
  --bg: #F5EFEA;
  --text: #000000;
  --muted: #6f6055;
  --accent: #b4492f;
}

html,
body {
  margin: 0;
  min-height: 100%;
}


body.catalog-v2 {
  background: var(--bg);
  color: var(--text);
  font-family: "Canela", serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: .01rem;
}

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

p,
figure,
h1,
h2 {
  margin: 0;
  font-weight: 300;
}

a {
  color: var(--muted);
}

.v-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 1.25rem 1.75rem;
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.v-nav.v-nav--hidden {
  opacity: 0;
  transform: translateY(-0.75rem);
}

.v-nav__logo {
  pointer-events: all;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.v-nav__logo img {
  height: 4rem;
  width: auto;
}

.v-scroll-wrapper {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.v-scroll-content {
  min-height: 100%;
}

.v-hero,
.v-products {
  width: min(1640px, calc(100vw - 3rem));
  margin: 0 auto;
}

.v-hero {
  height: 150vh;
  position: relative;
}

.v-hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  transition: opacity 60ms linear;
}

.v-hero__explore {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 300;
  color: var(--muted);
  text-transform: lowercase;
  padding: 0;
  opacity: 0.7;
  transition: opacity 200ms;
}

.v-hero__explore:hover {
  opacity: 1;
}

.v-hero__eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.v-hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.v-hero__text,  .v-follow h2{
  max-width: 951px;
  margin: 0;
  text-align: center;
  font-size: clamp(1.625rem, 2.1875vw, 3.5rem);
}

.v-products {
  padding-bottom: 4rem;
}

.story {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: min(84vh, 900px);
  width: min(1400px, calc(100vw - 5rem));
  margin-bottom: clamp(7rem, 13vw, 14rem);
}

.story--shift-1 {
  margin-left: auto;
  margin-right: auto;
}

.story--shift-2 {
  margin-left: auto;
  margin-right: auto;
}

.story--shift-3 {
  margin-left: auto;
  margin-right: auto;
}

.story--shift-4 {
  margin-left: auto;
  margin-right: auto;
}

.story--odd {
  justify-content: flex-start;
}

.story--even {
  justify-content: flex-start;
}

.story--collection {
  display: flex;
  align-items: start;
  gap: 0;
}

.story--even .story__media {
  order: 2;
}

.story--even .story__info {
  order: 1;
}

.story__media {
  
  min-height: 100%;
  overflow: hidden;
  will-change: transform;
  transition: transform 120ms linear;
}

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

.story__info {
  display: grid;
  gap: 1.25rem;
  align-content: center;
  will-change: transform;
  transition: transform 120ms linear;
}

.story--collection .story__info {
  order: 1;
  flex: 0 0 calc((100% / 12) * 3);
  margin-left: calc(100% / 12);
}

.story--odd:not(.story--collection) .story__info {
  order: 1;
  flex: 0 0 calc((100% / 12) * 3);
  margin-left: calc(100% / 12);
}

.story--odd:not(.story--collection) .story__media {
  order: 2;
  flex: 0 0 calc((100% / 12) * 5);
  margin-left: calc(100% / 12);
  margin-right: calc((100% / 12) * 2);
}

.story--even:not(.story--collection) .story__media {
  order: 1;
  flex: 0 0 calc((100% / 12) * 5);
  margin-left: calc((100% / 12) * 2);
  margin-right: calc(100% / 12);
}

.story--even:not(.story--collection) .story__info {
  order: 2;
  flex: 0 0 calc((100% / 12) * 3);
  margin-right: calc(100% / 12);
}

.story__info--sticky {
  position: sticky;
  top: clamp(2rem, 8vh, 6rem);
  align-self: start;
  padding-top: clamp(1rem, 3vh, 2rem);
}

.story__info h2 {
  font-size: clamp(1.625rem, 2.1875vw, 3.5rem);
}

.story__description {
  max-width: 24rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.story__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.story__price {
  font-size: inherit;
  letter-spacing: normal;
}

.collection-gallery {
  order: 2;
  flex: 0 0 calc((100% / 12) * 5);
  margin-left: calc(100% / 12);
  margin-right: calc((100% / 12) * 2);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 2rem);
  overflow: visible;
}

.collection-print {
  width: 80%;
  margin: 0;
  margin-left: var(--x-shift, 0%);
  margin-top: var(--stack-overlap, 0px);
  overflow: visible;
  position: relative;
  will-change: transform;
  transition: transform 80ms linear;
}

.collection-print:first-child {
  margin-top: 0;
}

.collection-print img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 7;
  object-fit: cover;
}

.collection-print--shift-1 {
  margin-left: var(--x-shift, 0%);
  margin-right: 0;
}

.collection-print--shift-2 {
  margin-left: var(--x-shift, 0%);
  margin-right: 0;
}

.collection-print--shift-3 {
  margin-left: var(--x-shift, 0%);
  margin-right: 0;
}

.collection-print--shift-4 {
  margin-left: var(--x-shift, 0%);
  margin-right: 0;
}

.collection-print--shift-5 {
  margin-left: var(--x-shift, 0%);
  margin-right: 0;
}

.v-follow {
  width: min(1640px, calc(100vw - 3rem));
  min-height: 100vh;
  margin: 0 auto 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.v-follow h2 {
  margin-bottom: 1rem;
}

.v-follow__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

.v-follow__list li{
  margin: .5rem;
}

.v-site-footer {
  width: min(1640px, calc(100vw - 3rem));
  margin: 0 auto 2rem;
  padding: 1.5rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  text-align: center;
}

.v-site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .v-scroll-wrapper {
    height: auto;
    overflow: visible;
  }

  .v-hero {
    height: auto;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
  }

  .v-hero__sticky {
    position: relative;
    height: auto;
    margin: auto;
  }

  .v-hero__explore {
    position: static;
    transform: none;
    display: block;
    margin: 2rem auto 0;
  }

  .v-hero,
  .v-products {
    width: min(100vw - 1.5rem, 1200px);
  }

  .story__media,
  .story__info,
  .collection-print {
    will-change: auto;
    transform: none !important;
    transition: none;
  }

  .story,
  .story--odd,
  .story--even {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 6rem;
    margin-left: 0;
    margin-right: 0;
  }

  .story--collection {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 6rem;
    margin-left: 0;
    margin-right: 0;
  }

  .story--collection .story__info,
  .collection-gallery {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .collection-gallery {
    gap: 1.5rem;
    overflow: hidden;
  }

  .collection-print,
  .collection-print--shift-1,
  .collection-print--shift-2,
  .collection-print--shift-3,
  .collection-print--shift-4,
  .collection-print--shift-5 {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .story--odd:not(.story--collection) .story__info,
  .story--odd:not(.story--collection) .story__media,
  .story--even:not(.story--collection) .story__media,
  .story--even:not(.story--collection) .story__info {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .story--even:not(.story--collection) .story__info {
    order: -1;
  }

  .story{
    min-height: unset;
  }

  .story--even .story__media,
  .story--even .story__info,
  .story--odd .story__media,
  .story--odd .story__info {
    order: 0;
  }

  .story .story__info {
    order: -1;
  }

  .story__info--sticky {
    position: static;
    padding-top: 0;
  }

  .story__media img {
    min-height: 18rem;
  }

  .story__description {
    max-width: none;
  }

  .v-follow {
    width: min(100vw - 1.5rem, 1200px);
    min-height: 100vh;
    margin-bottom: 4rem;
  }

  .v-follow__list {
    display: block;
    text-align: center;
  }

  .v-follow__list li + li {
    margin-top: 0.75rem;
  }

  .v-site-footer {
    width: min(100vw - 1.5rem, 1200px);
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-top: 1.25rem;
  }
}
