@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-direction: column;
  gap: 0.15rem;
  margin-top: 1rem;
  opacity: 0.55;
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.story__price {
  font-weight: 500;
}

.story__order-btn {
  appearance: none;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.story__order-btn:hover {
  opacity: 0.8;
}

/* Contact drawer */
.contact-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}

.contact-drawer.is-open {
  visibility: visible;
}

.contact-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  /* Let wheel/scroll fall through so the page behind stays scrollable. */
  pointer-events: none;
}

.contact-drawer.is-open .contact-drawer__backdrop {
  opacity: 1;
}

.contact-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: #111;
  color: #f2f2f2;
  box-sizing: border-box;
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  /* Only the panel captures input; the rest of the page stays usable. */
  pointer-events: auto;
}

.contact-drawer.is-open .contact-drawer__panel {
  transform: translateX(0);
}

.contact-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  appearance: none;
  background: none;
  border: 0;
  color: #f2f2f2;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
}

.contact-drawer__close:hover {
  opacity: 1;
}

.contact-drawer__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact-drawer__intro {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

.contact-field input,
.contact-field textarea {
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 0;
  border-radius: 0;
  padding: 0.65rem 0.75rem;
  box-sizing: border-box;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}

.contact-field input[readonly] {
  opacity: 0.7;
  cursor: default;
}

.cf-turnstile {
  width: 100%;
}

/* Collapse the widget's box when it has nothing to show (interaction-only). */
.cf-turnstile:empty {
  display: none;
}

.contact-form__submit {
  appearance: none;
  margin-top: 0.5rem;
  padding: 0.8rem 1rem;
  font: inherit;
  font-weight: 600;
  color: #111;
  background: #f2f2f2;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-form__submit:hover {
  opacity: 0.85;
}

.contact-form__submit:disabled {
  opacity: 0.5;
  cursor: default;
}

.contact-form__status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-form__status.is-ok {
  color: #8fd19e;
}

.contact-form__status.is-error {
  color: #f29b9b;
}

.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;
  }
}

/* Screen-reader-only utility (e.g. the page <h1>) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
