/** Shopify CDN: Minification failed

Line 73:0 All "@import" rules must come first

**/
/* sst-style.css — root variables, utilities, theme overrides. No section-specific CSS here. */

:root {
  --sst-ink: #171613;
  --sst-white: #ffffff;
  --sst-muted: #6f6b64;
  --sst-cream: #f5f1ea;
  --sst-paper: #fffdf9;
  --sst-line: #ddd7cd;
  --sst-gold: #a47c45;
  --sst-dark: #20211d;
  --sst-hero-bg: #d8d3cc;
  --sst-trans: #ffffff00;
  --sst-hero-overlay: 12, 12, 10;
  --sst-hero-overlay-mobile: 10, 10, 8;
  --sst-white-90: rgba(255, 255, 255, .9);
  --sst-story-bg: #24231f;
  --sst-review-stars: #765c37;
  --sst-marquee-accent: #cfb584;
  --sst-category-placeholder-bg: #ddd;
  --sst-product-image-bg: #e8e4de;
  --sst-footer-bg: #130d0a;
  --sst-footer-text: #f4eadc;
  --sst-footer-muted: #c8b8a6;
  --sst-footer-heading: #fff6ec;
  --sst-footer-social-bg: #050505;
  --sst-footer-input-placeholder: #9f8d7d;
  --sst-footer-btn-bg: #f7f0e5;
  --sst-footer-btn-color: #17110d;
  --sst-footer-form-msg: #d6c4b1;
  --sst-bottom-text: #9d8b7b;
  --sst-header-bg: rgba(255, 253, 249, .95);
  --sst-header-border: rgba(23, 22, 19, .1);
  --sst-radius: 2px;
  --sst-serif: 'Cormorant', Georgia, serif;
  --sst-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sst-container-width: 1380px;
  --sst-section-pad: 110px;
  --sst-section-pad-mobile: 75px;

  /* font sizes — fixed scale (design values, no per-viewport scaling) */
  --sst-fs-3xs: 9px;
  --sst-fs-2xs: 10px;
  --sst-fs-xs: 11px;
  --sst-fs-sm: 12px;
  --sst-fs-smd: 13px;
  --sst-fs-md: 14px;
  --sst-fs-mlg: 17px;
  --sst-fs-base: 16px;
  --sst-fs-lg: 19px;
  --sst-fs-xl: 20px;
  --sst-fs-2xl: 22px;
  --sst-fs-3xl: 34px;
  --sst-fs-4xl: 37px;
  --sst-fs-5xl: 58px;

  /* font sizes — fluid headings (clamp: mobile, viewport-relative, desktop) */
  --sst-fs-h2: 40px;
  --sst-fs-hero-heading: clamp(58px, 6.4vw, 102px);
  --sst-fs-hero-heading-mobile: clamp(50px, 15vw, 72px);
  --sst-fs-story-heading: 40px;
  --sst-fs-editorial-heading: 40px;
  --sst-fs-reviews-heading: 40px;
}
.pageheader svg.feather{
  color: var(--sst-ink)
}
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');
body p{
  font-family: var(--sst-sans) !important;
  margin: 0;
}
.sst-container {
  width: min(var(--sst-container-width), calc(100% - 48px));
  margin: 0 auto;
}

.sst-eyebrow {
  font-family: var(--sst-sans);
  font-size: var(--sst-fs-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sst-ink);
}

.sst-display {
  font-family: var(--sst-serif);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.02;
  color: var(--sst-ink);
  margin: 0;
}

.sst-section {
  padding: var(--sst-section-pad) 0;
}

.sst-section--cream {
  background: var(--sst-cream);
}

.sst-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
}

.sst-text-link {
  font-family: var(--sst-sans);
  font-size: var(--sst-fs-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  color: var(--sst-ink);
  white-space: nowrap;
}

.sst-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid var(--sst-ink);
  background: var(--sst-ink);
  color: var(--sst-white);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-family: var(--sst-sans);
  font-size: var(--sst-fs-xs);
  font-weight: 600;
  transition: .25s ease;
  cursor: pointer;
  text-decoration: none;
}

.sst-btn:hover {
  background: transparent;
  color: var(--sst-ink);
}

.sst-btn--light {
  background: var(--sst-white);
  color: var(--sst-ink);
  border-color: var(--sst-white);
}

.sst-btn--light:hover {
  background: transparent;
  color: var(--sst-white);
}

.sst-btn--outline {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.sst-btn--outline:hover {
  background: var(--sst-ink);
  color: var(--sst-paper);
}

@media (max-width: 640px) {
  :root {
    --sst-section-pad: var(--sst-section-pad-mobile);
  }
}

/* Symmetry header override — restyle theme's native header to match design */
.section-header .pageheader {
  background: var(--sst-header-bg);
}

.section-header .logo-area {
  width: min(1460px, calc(100% - 40px));
  max-width: none;
  min-height: 78px;
  margin: 0 auto;
  padding: 0;
  gap: 34px;
  border-bottom: 1px solid var(--sst-header-border);
}

.section-header .navigation__tier-1 {
  gap: 25px;
}

.section-header .navigation__link {
  font-family: var(--sst-sans);
  font-size: var(--sst-fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sst-ink);
}
.section-header .navigation__link:before{
  display: none;
}
.section-header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  overflow: hidden;
}

.section-header .logo__image {
  width: 132px;
  max-width: none;
  max-height: 56px;
  object-fit: contain;
  filter: invert(1);
}

.section-header .logo-area__right__inner {
  gap: 25px;
}

.section-header .header-account-link,
.section-header .show-search-link,
.section-header .cart-link {
  color: var(--sst-ink);
  margin-inline-end: 0;
}

.section-header .header-account-link__icon svg,
.section-header .show-search-link__icon svg,
.section-header .cart-link__icon svg {
  width: 20px;
  height: 20px;
}
.navigation--left .navigation__tier-1-container .navigation__tier-1>.navigation__item>.navigation__link{
  padding-bottom: 6px;
}
.section-header .navigation__tier-1 > .navigation__item > .navigation__link:hover{
  color: var(--sst-ink);
}
.navigation--left .navigation__tier-1-container .navigation__tier-1>.navigation__item>.navigation__link:before{
  bottom: 0;
}
.text-overlay .text-overlay__title{
  color: var(--sst-ink);
}
.navigation__column-title{
  display: none !important;
}
.menu-promotion__image {
  width: 100%;
  height: 308px;
  object-fit: cover;
}
@media (max-width: 720px) {
  .section-header .logo__image {
    width: 96px;
    max-height: 44px;
  }
  .sst-section-head{
    align-items: flex-start;
  }
  .mobile-navigation-drawer .navigation__tier-1{
    padding: 35px 14px;
  }
  .navigation__column-title{
    display: block !important;
  }
  .mobile-navigation-drawer .navigation__column--promotion-carousel{
    flex-direction: column;
  }
  .mobile-navigation-drawer .menu-promotion{
    max-width: 100% !important;
    padding-inline-end: 20px !important;
    flex: 1 !important;
  }
  .menu-promotion__image{
    height: auto !important;
  }
  .menu-promotion__text{
    margin-top: 1.5em;
  }
  #categories .sst-section-head,
  #shop .sst-section-head{
    flex-direction:column;
  }
}

/* Menu promotions inside the mobile drawer — theme only ships desktop layout rules */
.mobile-navigation-drawer .navigation__wide-promotion {
  margin: 20px 0 0;
  padding: 24px 20px 28px;
  background: var(--sst-cream);
}

.mobile-navigation-drawer .navigation__wide-promotion .container {
  width: 100%;
  padding: 0;
}

.mobile-navigation-drawer .navigation__wide-promotion .flexible-layout .column:last-child {
  margin-top: 22px;
  margin-bottom: 0;
}

.mobile-navigation-drawer .navigation__wide-promotion img {
  width: 100%;
  border-radius: var(--sst-radius);
}

.mobile-navigation-drawer .navigation__wide-promotion .majortitle {
  font-family: var(--sst-serif);
  font-size: var(--sst-fs-3xl);
  line-height: 1.1;
}

.mobile-navigation-drawer .navigation__wide-promotion .subheading {
  font-family: var(--sst-sans);
  font-size: var(--sst-fs-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.mobile-navigation-drawer .navigation__wide-promotion .rte {
  font-size: var(--sst-fs-md);
}

.mobile-navigation-drawer .navigation__wide-promotion .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.mobile-navigation-drawer .menu-promotion__text {
  font-family: var(--sst-sans);
  font-size: var(--sst-fs-sm);
  letter-spacing: .1em;
  text-transform: uppercase;
}
