/** Shopify CDN: Minification failed

Line 347:18 Unexpected "{"
Line 347:27 Expected ":"
Line 347:34 Unexpected "{"
Line 348:21 Expected identifier but found whitespace
Line 348:23 Unexpected "{"
Line 348:26 Expected ":"
Line 349:16 Expected identifier but found whitespace
Line 349:18 Unexpected "{"
Line 349:21 Expected ":"
Line 349:38 Expected ":"
... and 124 more hidden warnings

**/
/* ==========================================
   STORY SECTION
========================================== */

.sy-story {
  overflow: hidden;
}

/* Guarantee padding is included in width everywhere in this section — without this,
   the mobile cell's padding-right (added for the arrow) inflates its rendered width
   beyond 50%, causing the pair to overflow and wrap into a single column. */
.sy-story,
.sy-story *,
.sy-story *::before,
.sy-story *::after {
  box-sizing: border-box;
}

/* Wider container, matches Figma's roomier canvas */
.sy-story__container {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
}

/* ==========================================
   Image column (~40%)
========================================== */

.sy-story__image-col {
  padding-left: 0;
   display: flex;
}

.sy-story__image {
  margin-left: 6px; 
}

.sy-story__image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* ==========================================
   Content column (~60%)
========================================== */

.sy-story__content-col {
  padding-left: 0;
}

.sy-story__content {
  padding-left: 56px;
  padding-top: 4px;
  padding-bottom: 4px;
}

/* Eyebrow */
.sy-story__eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #B8954A;
  font-weight: 300;
}

/* Heading */
.sy-story__heading {
  margin: 0 0 24px;
  font-size: 55px;
  line-height: 1.15;
  font-weight: 600;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  color: #6B4A36;
}

.sy-story__highlight {
  color: #B8954A;
  font-style: italic;
}

/* Description */
.sy-story__desc {
  margin-bottom: 32px;
  max-width: 92%;
}

.sy-story__desc p {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  color: #6B4A36 ;
}

/* Divider */
.sy-story__divider {
  margin: 0 0 15px;
  border: 0;
  border-top: 1px solid #B8954A;
  opacity: 1;
  width: 100%;
}

/* ==========================================
   Accordion Grid
========================================== */

.sy-story__grid {
  margin-top: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* each cell's border-bottom sits after its OWN content only */
  column-gap: 40px;
  row-gap: 0;
}

.sy-story__cell {
  position: relative;
  border: none;
  width: calc(50% - 20px);
  padding-top: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid #B8954A;
}

/* ==========================================
   Toggle button (header row: number + title + arrow)
========================================== */

.sy-story__toggle {
  position: relative;
  display: block;
  width: 100% !important;
  padding: 0 30px 0 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  background: transparent;
  border: 0;
}

.sy-story__top {
  display: block !important;
  position: relative;
}

.sy-story__meta {
  width: 100%;
}

.sy-story__number {
  font-size: 34px;
  font-family: "Cormorant Garamond", serif;
  color: #B8954A;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 1px;
  line-height: 1;
}

.sy-story__title {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  color: #6B4A36;
  font-weight: 400;
}

.sy-story__arrow {
  position: absolute !important;
  top: auto !important;
  bottom: 0 !important;
  right: 0;
  font-size: 25px !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline !important;
  color: #B8954A;
  font-weight: 800;
  background: none;
  border: none;
  transition: transform 0.3s ease, color 0.3s ease;
  transform-origin: center;
}

/* Arrow flips to point down-right when the block is open, signalling "click to close" */
.sy-story__toggle[aria-expanded="true"] .sy-story__arrow {
  transform: rotate(90deg);
  color: B8954A;
}

/* Body collapse — JS controls maxHeight */
.sy-story__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-right: 30px;
}

.sy-story__body-inner {
  padding: 12px 0 0;
}

.sy-story__body-inner p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.8;
  color: #5A5A5A;
}

.sy-story__link {
  display: inline-block;
  margin-top: 10px;
  color: #C8A45A;
  text-decoration: none;
  font-size: 13px;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 1399px) {
  .sy-story__container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .sy-story__heading {
    font-size: 48px;
  }
}

@media (max-width: 1199px) {
  .sy-story__heading {
    font-size: 42px;
  }
  .sy-story__content {
    padding-left: 40px;
  }
  .sy-story__image img {
    min-height: 520px;
  }
}

@media (max-width: 991px) {
  .sy-story__container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .sy-story__image-col,
  .sy-story__content-col {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sy-story__image {
  margin-left: 6px;
  width: 100%;   /* NEW */
  height: 100%;  /* NEW */
}

.sy-story__image img {
  width: 100%;
  height: 100%;
  min-height: 620px; /* now acts as a floor, not the actual height */
  object-fit: cover;
  border-radius: 0;
  display: block;
}
  .sy-story__content {
    padding-left: 0;
    padding-top: 32px;
  }
  .sy-story__heading {
    font-size: 36px;
  }
  .sy-story__desc {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .sy-story__container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .sy-story__grid {
    column-gap: 0;
  }
  .sy-story__cell {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-right: 26px;
  }
  .sy-story__number {
    font-size: 24px;
    margin-bottom: 4px;
  }
  .sy-story__title {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .sy-story__arrow {
    font-size: 12px !important;
    bottom: 0 !important;
    top: auto !important;
  }
  .sy-story__heading {
    font-size: 30px;
  }
  .sy-story__desc p {
    font-size: 15px;
  }
  .sy-story__eyebrow {
    letter-spacing: 3px;
  }
}


 #sy-recognition-{{ section.id }} {
    background-color: {{ s.bg_color }};
    padding-top: {{ s.padding_top }}px;
    padding-bottom: {{ s.padding_bottom }}px;
    width: 100%;
    overflow: hidden;
  }

  #sy-recognition-{{ section.id }} .sy-recognition__container {
    max-width: 1120px;
  }
  #sy-recognition-{{ section.id }} .sy-recognition__header {
    text-align: center;
  }

  #sy-recognition-{{ section.id }} .sy-recognition__label {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #B8954A;
    margin: 0 0 16px;
  }
  #sy-recognition-{{ section.id }} .sy-recognition__heading {
    font-family: 'Cormorant Garamond';
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #1A1A1A;
    max-width: 780px;
    margin: 0 auto 48px;
  }

  @media (min-width: 768px) {
    #sy-recognition-{{ section.id }} .sy-recognition__heading {
      font-size: 48px;
      line-height: 1.28;
    }
  }

  @media (min-width: 992px) {
    #sy-recognition-{{ section.id }} .sy-recognition__heading {
      font-size: 48px;
      line-height: 1.25;
      margin-bottom: 56px;
    }
  }
  #sy-recognition-{{ section.id }} .sy-recognition__row {
    align-items: stretch;
  }

  #sy-recognition-{{ section.id }} .sy-recognition__card {
    background-color: #FFFFFF;
    border-radius: 0;
    height: 100%;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 768px) {
    #sy-recognition-{{ section.id }} .sy-recognition__card {
      padding: 40px 32px;
    }
  }

  #sy-recognition-{{ section.id }} .sy-recognition__percentage {
    font-family: 'Cormorant Garamond';
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    color: #B8954A;
    margin: 0 0 16px;
  }
  #sy-recognition-{{ section.id }} .sy-recognition__description {
    font-family: 'Cormorant Garamond';
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    color: #1A1A1A;
    margin: 0 0 20px;
  }

  @media (min-width: 768px) {
    #sy-recognition-{{ section.id }} .sy-recognition__percentage {
      font-size: 35px;
      margin-bottom: 20px;
    }
    #sy-recognition-{{ section.id }} .sy-recognition__description {
      font-size: 21px;
      margin-bottom: 24px;
    }
  }

  #sy-recognition-{{ section.id }} .sy-recognition__footer {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B4A36;
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 12px;
  }

  @media (min-width: 768px) {
    #sy-recognition-{{ section.id }} .sy-recognition__footer {
      font-size: 13px;
    }
  }

  /* sy promise start*/
  /* ---- Section: only bg color + padding come from settings ---- */
  #sy-promise-{{ section.id }} {
    background-color: {{ s.bg_color }};
    padding-top: {{ s.padding_top }}px;
    padding-bottom: {{ s.padding_bottom }}px;
    width: 100%;
    overflow: hidden;
  }

  #sy-promise-{{ section.id }} .sy-promise__container {
    max-width: 1120px;
  }

  /* ---- Header (fixed typography, matches Figma) ---- */
  #sy-promise-{{ section.id }} .sy-promise__header {
    text-align: center;
    margin-bottom: 40px;
  }

  #sy-promise-{{ section.id }} .sy-promise__label {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #B8954A;
    margin: 0 0 16px;
  }

  #sy-promise-{{ section.id }} .sy-promise__heading {
    font-family: 'Cormorant Garamond';
    font-size: 56px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.03em;
    color: #1A1A1A;
    margin: 0;
  }

  @media (min-width: 768px) {
    #sy-promise-{{ section.id }} .sy-promise__heading {
      font-size: 40px;
    }
  }

  @media (min-width: 992px) {
    #sy-promise-{{ section.id }} .sy-promise__heading {
      font-size: 48px;
    }
  }

  /* ---- Connected grid border (table-like, no double lines) ---- */
  #sy-promise-{{ section.id }} .sy-promise__row {
    border-top: 1px solid rgba(26, 26, 26, 0.18);
    border-left: 1px solid rgba(26, 26, 26, 0.18);
  }

  #sy-promise-{{ section.id }} .sy-promise__col {
    display: flex;
  }

  /* ---- Card: fixed padding / height / alignment, no shadows, no radius ---- */
  #sy-promise-{{ section.id }} .sy-promise__card {
    width: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid #C6AEA3;
    border-bottom: 1px solid #C6AEA3;
    border-radius: 0;
    box-shadow: none;
  }

  @media (min-width: 992px) {
    #sy-promise-{{ section.id }} .sy-promise__card {
      min-height: 200px;
      padding: 40px 24px;
    }
  }

  /* ---- Icon: fixed size, scales proportionally ---- */
  #sy-promise-{{ section.id }} .sy-promise__icon-wrap {
    margin-bottom: 24px;
  }

  #sy-promise-{{ section.id }} .sy-promise__icon {
    width: 48px;
    height: auto;
    display: block;
  }

  /* ---- Title: fixed typography, matches Figma ---- */
  #sy-promise-{{ section.id }} .sy-promise__title {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.05em;
    color: #6B4A36;
    margin: 0;
    max-width: 160px;
  }
    /* sy promise end*/

    /* sy ritual start */#sy-ritual-{{ section.id }} .sy-ritual__container {
    max-width: 900px;
  }

  /* ---- Header (fixed typography, matches Figma) ---- */
  #sy-ritual-{{ section.id }} .sy-ritual__header {
    text-align: center;
    margin-bottom: 28px;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__label {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #B8954A;
    margin: 0 0 12px;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 116%;
    letter-spacing: 0.01em;
    color: #FFFF;
    margin: 0 0 28px;
  }

  @media (min-width: 768px) {
    #sy-ritual-{{ section.id }} .sy-ritual__heading {
      font-size: 48px;
    }
  }

  /* ---- Category Tabs ---- */
  #sy-ritual-{{ section.id }} .sy-ritual__tabs-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__tabs-wrap::-webkit-scrollbar {
    display: none;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__tabs {
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    width: max-content;
    min-width: 100%;
    margin: 0 auto 32px;
    padding: 0 4px 16px;
    border-bottom: 1px solid rgba(245, 238, 230, 0.18);
  }

  @media (min-width: 768px) {
    #sy-ritual-{{ section.id }} .sy-ritual__tabs {
      justify-content: space-between;
      gap: 32px;
    }
  }

  #sy-ritual-{{ section.id }} .sy-ritual__tab {
    background: none;
    border: none;
    padding: 4px 2px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ACACAC;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__tab.is-active {
    color: #B8954A;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__tabs-indicator {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    background-color: #B8954A;
    transition: left 0.3s ease, width 0.3s ease;
  }

  /* ---- Ritual / Product Card ---- */
  #sy-ritual-{{ section.id }} .sy-ritual__cards {
    max-width: 620px;
    margin: 0 auto;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__card {
    display: none;
    background-color: #FFFFFF;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__card.is-active {
    display: block;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #F2ECE4;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: none;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__video.is-playing {
    display: block;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2B120B;
    cursor: pointer;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__play.is-hidden {
    display: none;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__content {
    padding: 24px 28px 32px;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__category {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #B08A4E;
    margin: 0 0 8px;
  }

  #sy-ritual-{{ section.id }} .sy-ritual__card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    color: #1A1A1A;
    margin: 0;
  }

  @media (min-width: 768px) {
    #sy-ritual-{{ section.id }} .sy-ritual__card-title {
      font-size: 28px;
    }
  }

  /* sy ritual end */