/** Shopify CDN: Minification failed

Line 576:2 Unexpected "}"

**/
/** Critical CSS for the theme. This file is included on every page. */

/* Reset styles inspired by https://www.joshwcomeau.com/css/custom-css-reset/ */
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
}

html:has(dialog[scroll-lock][open], details[scroll-lock][open]) {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs);
}

select {
  background-color: var(--color-background);
  color: currentcolor;
}

dialog {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

p {
  text-wrap: pretty;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p:empty {
  display: none;
}

:is(p, h1, h2, h3, h4, h5, h6):first-child,
:empty:first-child + :where(p, h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
}

:is(p, h1, h2, h3, h4, h5, h6):last-child,
:where(p, h1, h2, h3, h4, h5, h6) + :has(+ :empty:last-child) {
  margin-block-end: 0;
}

/** Theme styles below */
body {
  font-family: var(--font-primary--family);
  font-weight: 400;
  font-size: var(--av-text-body);
  line-height: var(--av-leading-body);
  letter-spacing: var(--av-tracking-body);
  background-color: var(--color-background);
  color: var(--color-foreground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/**
 * Headings are set in Bodoni Moda, in caps, and run wide.
 * Body copy stays left-aligned — never centred in running text.
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--av-font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--av-tracking-display);
  line-height: var(--av-leading-heading);
  text-wrap: balance;
}

h1 {
  font-size: var(--av-text-display);
  line-height: var(--av-leading-display);
}

h2 {
  font-size: var(--av-text-h2);
}

h3 {
  font-size: var(--av-text-h3);
}

h4,
h5,
h6 {
  font-size: var(--av-text-small);
  letter-spacing: var(--av-tracking-wide);
}

a {
  color: inherit;
}

::selection {
  background-color: var(--color-surface);
  color: var(--color-foreground);
}

hr {
  border: 0;
  border-block-start: var(--av-border);
  margin-block: var(--av-space-l);
}

/** Focus — the accent colour is reserved for hover and active states. */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/**
 * Honour reduced-motion everywhere, including any animation a section
 * declares locally without reaching for the motion tokens.
 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

/** Landmarks */
main {
  flex: 1 0 auto;
  padding-block-end: var(--av-space-section);
}

main:focus {
  outline: none;
}

/**
 * Vertical rhythm between sections: 64px on mobile, 120px on desktop.
 * Applied as a gap between siblings so the first section can sit flush
 * beneath the header and set its own leading air when it wants to.
 */
main > .shopify-section + .shopify-section {
  margin-block-start: var(--av-space-section);
}

.skip-to-content:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-to-content:focus {
  position: absolute;
  z-index: 100;
  inset-block-start: var(--av-space-2xs);
  inset-inline-start: var(--av-space-2xs);
  padding: var(--av-space-2xs) var(--av-space-s);
  background-color: var(--color-background);
  border: var(--av-border-frame);
  font-size: var(--av-text-small);
  text-transform: uppercase;
  letter-spacing: var(--av-tracking-wide);
  text-decoration: none;
}

/** Visually hidden, still read by assistive technology. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/** Section layout utilities */

/**
 * Setup a grid that enables both full-width and constrained layouts
 * depending on the class of the child elements.
 *
 * By default, a minimum content margin is set on the left and right
 * sides of the section and the content is centered in the viewport to
 * not exceed the maximum page width.
 *
 * When a child element is given the `full-width` class, it will span
 * the entire viewport.
 */
.shopify-section {
  --content-width: min(
    calc(var(--page-width) - var(--page-margin) * 2),
    calc(100% - var(--page-margin) * 2)
  );
  --content-margin: minmax(var(--page-margin), 1fr);
  --content-grid: var(--content-margin) var(--content-width) var(--content-margin);

  /* This is required to make <img> elements work as background images */
  position: relative;
  grid-template-columns: var(--content-grid);
  display: grid;
  width: 100%;
}

/* Child elements, by default, are constrained to the central column of the grid. */
.shopify-section > * {
  grid-column: 2;
}

/* Child elements that use the full-width utility class span the entire viewport. */
.shopify-section > .full-width {
  grid-column: 1 / -1;
}

/**
 * A section band with a contrasting background.
 *
 * Applied to the section wrapper itself via the `class` schema attribute, so
 * the background spans the viewport while the section's children stay in the
 * central column of the grid above. Bands own their vertical padding; the
 * rhythm between sections still comes from the margin rule further up.
 */
.av-band {
  padding-block: var(--av-space-section);
}

.av-band--sand {
  background-color: var(--color-surface);
}

/**
 * Image placements.
 *
 * The ratio is locked here, so a slot occupies exactly the same space whether
 * or not an image has been supplied and the layout never reflows when one is
 * added later. A slot with no image is not rendered at all — the sections that
 * own them collapse instead, so a section without a picture still reads as
 * finished rather than unfinished.
 */
.av-media {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.av-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.av-media--4x3 {
  aspect-ratio: 4 / 3;
}

.av-media--16x9 {
  aspect-ratio: 16 / 9;
}

.av-media--1x1 {
  aspect-ratio: 1 / 1;
}


/**
 * Buttons.
 *
 * One primary style, used for the two places the theme actually asks for a
 * commitment: add to cart, and checkout. Everything else in the theme is a
 * text link.
 */
.av-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.8rem var(--av-space-l);
  border: 1px solid var(--color-foreground);
  border-radius: 999px;
  background-color: var(--color-foreground);
  color: var(--color-background);
  font-family: var(--av-font-body);
  font-size: var(--av-text-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--av-tracking-display);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--av-duration-fast) var(--av-ease),
    border-color var(--av-duration-fast) var(--av-ease),
    color var(--av-duration-fast) var(--av-ease);
}

.av-button:hover:not(:disabled) {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.av-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.av-button--secondary {
  background-color: transparent;
  color: var(--color-foreground);
}

.av-button--secondary:hover:not(:disabled) {
  background-color: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.av-eyebrow,
.av-card__series {
  margin: 0 0 var(--av-space-s);
  color: var(--color-accent);
  font-size: var(--av-text-eyebrow);
  font-weight: 500;
  letter-spacing: var(--av-tracking-wide);
  line-height: 1.3;
  text-transform: uppercase;
}

.av-text-link {
  display: inline-block;
  color: inherit;
  font-size: var(--av-text-small);
  font-weight: 500;
  letter-spacing: var(--av-tracking-display);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.4em;
  text-transform: uppercase;
  transition: color var(--av-duration-fast) var(--av-ease);
}

.av-text-link:hover {
  color: var(--color-accent);
}

.av-frame-object {
  position: relative;
  display: block;
  padding: clamp(0.45rem, 1.25vw, 0.85rem);
  background: linear-gradient(135deg, #28211e, var(--av-ink) 56%, #443934);
  border: 1px solid color-mix(in srgb, var(--av-ink) 84%, var(--av-stone));
  box-shadow:
    0 1.8rem 3.2rem rgba(28, 22, 20, 0.2),
    0 0.35rem 0.65rem rgba(28, 22, 20, 0.16),
    inset 0 0 0 1px rgba(247, 244, 239, 0.12);
  transform-style: preserve-3d;
  transition: transform var(--av-duration-slow) var(--av-ease), box-shadow var(--av-duration-slow) var(--av-ease);
}

.av-frame-object::after {
  content: '';
  position: absolute;
  inset: clamp(0.45rem, 1.25vw, 0.85rem);
  pointer-events: none;
  background: linear-gradient(118deg, rgba(247, 244, 239, 0.16), transparent 28% 72%, rgba(247, 244, 239, 0.08));
  transform: translateZ(0.08rem);
}

.av-frame-object img,
.av-frame-object svg {
  display: block;
  width: 100%;
  height: auto;
  background: var(--color-background);
}

.av-panel-object {
  position: relative;
  display: block;
  background: #d3d1cc;
  border: 1px solid color-mix(in srgb, var(--color-foreground) 22%, var(--color-background));
  box-shadow:
    0.2rem 0.35rem 0 rgba(28, 22, 20, 0.12),
    0 1.8rem 3.2rem rgba(28, 22, 20, 0.16);
  transform-style: preserve-3d;
  transform-origin: 50% 0;
  transition: transform var(--av-duration-slow) var(--av-ease);
}

.av-panel-object::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.12), transparent 34% 72%, rgba(255, 255, 255, 0.06));
}

.av-panel-object::after {
  content: '';
  position: absolute;
  z-index: 2;
  inset-block-start: -0.55rem;
  inset-inline-start: 50%;
  width: 0.32rem;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--color-foreground) 62%, var(--color-background));
  border-radius: 50%;
  background: var(--color-surface);
  transform: translateX(-50%);
}

.av-panel-object img,
.av-panel-object svg {
  display: block;
  width: 100%;
  height: auto;
}

.av-motion-ready [data-av-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms var(--av-ease), transform 700ms var(--av-ease);
}

.av-motion-ready [data-av-reveal].is-visible,
.shopify-design-mode [data-av-reveal] {
  opacity: 1;
  transform: translateY(0);
}

/**
 * Rich text.
 *
 * Applied wherever HTML arrives from Shopify rather than from the theme:
 * page content, product descriptions, collection descriptions, section
 * richtext settings. Body copy stays left-aligned and narrow.
 */
.rte > * + * {
  margin-block-start: var(--av-space-s);
}

.rte > :is(h2, h3, h4) {
  margin-block-start: var(--av-space-xl);
}

.rte a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 1px;
  transition: color var(--av-duration-fast) var(--av-ease);
}

.rte a:hover {
  color: var(--color-accent);
}

.rte :is(ul, ol) {
  padding-inline-start: 1.25em;
}

.rte li + li {
  margin-block-start: var(--av-space-2xs);
}

.rte img {
  margin-block: var(--av-space-l);
}

.rte blockquote {
  margin-block: var(--av-space-l);
  padding-inline-start: var(--av-space-m);
  border-inline-start: var(--av-border);
}


/**
 * Product and collection cards.
 *
 * Shared by the homepage grid, the collection page, the collections index and
 * search, so it lives here rather than inside any one section.
 */
.av-grid {
    display: grid;
    grid-template-columns: repeat(var(--av-grid-columns-mobile, 1), minmax(0, 1fr));
    gap: var(--av-space-xl) var(--av-space-m);
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .av-card {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: color var(--av-duration) var(--av-ease);
  }

  .av-card:hover {
    color: var(--color-accent);
  }

  .av-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    padding: clamp(1rem, 3vw, 2.5rem);
    background: color-mix(in srgb, var(--color-surface) 58%, var(--color-background));
    perspective: 1200px;
  }

  .av-card__media .av-panel-object {
    width: min(100%, 23rem);
    transform: rotateX(var(--av-tilt-x, 0deg)) rotateY(var(--av-tilt-y, 0deg));
  }

  @media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .av-card:hover .av-panel-object,
    .av-card:focus-visible .av-panel-object {
      animation: av-panel-settle 720ms ease-out both;
    }
  }

  @keyframes av-panel-settle {
    0% { transform: rotateY(0deg) rotateZ(0deg); }
    30% { transform: rotateY(1.2deg) rotateZ(0.65deg); }
    60% { transform: rotateY(0.7deg) rotateZ(-0.25deg); }
    82% { transform: rotateY(0.9deg) rotateZ(0.1deg); }
    100% { transform: rotateY(0.8deg) rotateZ(0deg); }
  }
  }

  .av-room-image {
    display: block;
    width: 100%;
  }

  .av-room-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .av-card__media--room {
    padding: 0;
    background: transparent;
  }

  .av-card__image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background-color: var(--color-background);
  }

  /* Keep Shopify's placeholder art inside the palette. */
  .av-card__placeholder {
    max-width: 100%;
    max-height: 100%;
    background-color: var(--color-surface);
    color: var(--color-border);
  }

  .av-card__placeholder * {
    fill: currentColor;
  }

  .av-card__title {
    margin-block-start: var(--av-space-2xs);
    font-size: var(--av-text-h3);
  }

  .av-card__meta {
    display: flex;
    justify-content: space-between;
    gap: var(--av-space-s);
    margin-block-start: var(--av-space-m);
  }

  .av-card__series {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .av-card__number {
    color: var(--color-border);
    font-size: var(--av-text-eyebrow);
    font-variant-numeric: tabular-nums;
  }

  /* Quieter than the oxblood series line above the title. */
  .av-card__category {
    margin-block-start: var(--av-space-3xs);
    color: var(--color-border);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: var(--av-tracking-wide);
    line-height: 1.3;
    text-transform: uppercase;
  }

  .av-card__price {
    margin-block-start: var(--av-space-2xs);
    font-size: var(--av-text-small);
  }

  @media screen and (min-width: 750px) {
    .av-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: var(--av-space-2xl) var(--av-space-l);
    }

    .av-card__media {
      padding: var(--av-space-l);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .av-motion-ready [data-av-reveal] {
      opacity: 1;
      transform: none;
    }

    .av-frame-object,
    .av-panel-object {
      transform: none !important;
    }

    .av-card:hover .av-panel-object,
    .av-card:focus-visible .av-panel-object {
      animation: none;
    }
  }

  @media screen and (min-width: 990px) {
    .av-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

/** Pagination, shared by the collection page and search. */
.av-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--av-space-l);
    margin-block-start: var(--av-space-2xl);
    padding-block-start: var(--av-space-l);
    border-block-start: var(--av-border);
    font-size: var(--av-text-small);
  }

  .av-pagination__link {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--av-tracking-display);
    text-decoration: underline;
    text-underline-offset: 0.4em;
    text-decoration-thickness: 1px;
    transition: color var(--av-duration-fast) var(--av-ease);
  }

  .av-pagination__link:hover {
    color: var(--color-accent);
  }

  .av-pagination__status {
    font-variant-numeric: tabular-nums;
  }

/** Form fields, shared by the contact form and search. */
.av-field + .av-field {
    margin-block-start: var(--av-space-m);
  }

  .av-field__label {
    display: block;
    margin-block-end: var(--av-space-3xs);
    font-size: var(--av-text-eyebrow);
    text-transform: uppercase;
    letter-spacing: var(--av-tracking-wide);
  }

  .av-field__input {
    display: block;
    width: 100%;
    min-height: 2.75rem;
    padding: var(--av-space-2xs) var(--av-space-s);
    border: var(--av-border-frame);
    background-color: transparent;
    color: inherit;
    font-size: var(--av-text-body);
    transition: border-color var(--av-duration-fast) var(--av-ease);
  }

  .av-field__input:hover {
    border-color: var(--color-accent);
  }

  .av-field__textarea {
    resize: vertical;
    line-height: var(--av-leading-body);
  }


/** Size choices, shared by the product page and the 3D gallery panel. */
.av-size__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding-inline: var(--av-space-m);
    border: var(--av-border-frame);
    font-size: var(--av-text-small);
    cursor: pointer;
    transition: background-color var(--av-duration-fast) var(--av-ease),
      border-color var(--av-duration-fast) var(--av-ease),
      color var(--av-duration-fast) var(--av-ease);
  }

  .av-size__label:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
  }

  /* Chosen size is filled rather than double-outlined, so the state reads
     without relying on a one-pixel difference. */
  .av-size__input:checked + .av-size__label {
    background-color: var(--color-foreground);
    color: var(--color-background);
  }

  .av-size__input:focus-visible + .av-size__label {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }

  .av-size__input:disabled + .av-size__label {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
  }

/** Quiet empty-state line, shared by the listing sections. */
.av-grid__empty {
    max-width: 48ch;
    font-size: var(--av-text-small);
  }
