/** Shopify CDN: Minification failed

Line 887:15 Expected identifier but found whitespace
Line 887:17 Unexpected "{"
Line 887:26 Expected ":"
Line 914:15 Expected identifier but found whitespace
Line 914:17 Unexpected "{"
Line 914:26 Expected ":"
Line 918:15 Expected identifier but found whitespace
Line 918:17 Unexpected "{"
Line 918:26 Expected ":"
Line 937:15 Expected identifier but found whitespace
... and 90 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:founders (INDEX:5) */
.founders-section {
    overflow: hidden;
    position: relative;
  }

  .founders-section--white { background: #ffffff; color: #0a0a0a; }
  .founders-section--neutral { background: #FAF5EB; color: #0a0a0a; }
  .founders-section--black { background: #000000; color: #ffffff; }

  .is-dark .founders-heading { color: var(--fc-dark-text, #FFFFFF); }
  .is-dark .founders-story { color: var(--fc-dark-story, #E5D9C4); }
  .is-dark .founders-badge-label { color: var(--fc-dark-text, #FFFFFF); }
  .is-dark .founders-signature-names { color: var(--fc-dark-text, #FFFFFF); }

  .founders-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  @media (min-width: 768px) {
    .founders-container { padding: 0 48px; }
  }

  .founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }

  @media (min-width: 900px) {
    .founders-grid {
      grid-template-columns: 1.05fr 1fr;
      gap: 72px;
    }

    .founders-image--right .founders-media { order: 2; }
    .founders-image--right .founders-content { order: 1; }
  }

  /* Media */
  .founders-media {
    position: relative;
    padding-bottom: 24px;
  }

  .founders-media-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: visible;
    background: transparent;
    box-shadow: 0 20px 50px rgba(112, 42, 15, 0.06);
    border-radius: 80px 16px 80px 16px;
  }

  .founders-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 80px 16px 80px 16px;
  }

  .founders-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(0,0,0,0.35);
    padding: 24px;
    text-align: center;
    border-radius: 80px 16px 80px 16px;
    border: 2px dashed var(--fc-overlay-border, #E5D9C4);
  }

  .founders-image-placeholder svg {
    width: 96px;
    height: auto;
  }

  .founders-image-placeholder-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  /* Stamp Overlay */
  .founders-stamp-wrapper {
    position: absolute;
    top: -24px;
    left: -24px;
    z-index: 12;
    width: 110px;
    height: 110px;
    pointer-events: none;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.12));
  }

  .founders-stamp-svg {
    width: 100%;
    height: 100%;
    animation: rotateStamp 25s linear infinite;
  }

  @keyframes rotateStamp {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @media (max-width: 767px) {
    .founders-stamp-wrapper {
      top: -16px;
      left: -16px;
      width: 80px;
      height: 80px;
    }
  }

  /* Overlay Card */
  .founders-overlay-card {
    position: absolute;
    bottom: -16px;
    left: 24px;
    right: 24px;
    background-color: var(--fc-overlay-bg, #FAF5EB);
    border: 1px solid var(--fc-overlay-border, #E5D9C4);
    border-radius: 12px;
    padding: 14px 8px;
    box-shadow: 0 12px 30px rgba(112, 42, 15, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    z-index: 10;
  }

  .founders-overlay-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 0 4px;
  }

  .founders-overlay-item:not(:last-child) {
    border-right: 1px solid var(--fc-overlay-border, #E5D9C4);
  }

  .founders-overlay-icon {
    color: var(--fc-accent, #9C6E3B);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .founders-overlay-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.3;
  }

  .founders-overlay-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--fc-text, #1A1A1A);
    line-height: 1.2;
  }

  @media (max-width: 767px) {
    .founders-overlay-card {
      bottom: -24px;
      left: 12px;
      right: 12px;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 4px;
      padding: 10px 4px;
    }
    .founders-overlay-item:nth-child(2n) {
      border-right: none !important;
    }
    .founders-overlay-label {
      font-size: 10px;
    }
  }

  /* Content */
  .founders-content {
    max-width: 560px;
  }

  .founders-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  @media (max-width: 767px) {
    .founders-eyebrow {
      display: flex;
      justify-content: center;
    }
  }

  .founders-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--fc-accent, #9C6E3B);
  }

  .founders-eyebrow-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--fc-accent, #9C6E3B);
  }

  .founders-heading {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 1.8rem + 2.5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--fc-text, #1A1A1A);
  }

  @media (max-width: 767px) {
    .founders-heading {
      text-align: center;
    }
  }

  .founders-heading em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--fc-accent, #9C6E3B);
    font-weight: 700;
  }

  /* Heading separator */
  .founders-heading-separator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 24px 0;
  }

  @media (max-width: 767px) {
    .founders-heading-separator {
      justify-content: center;
      margin: 16px auto 24px auto;
    }
  }

  .founders-sep-line {
    height: 1px;
    width: 60px;
    background-color: var(--fc-sep, #D9C9A8);
  }

  .founders-sep-icon {
    color: var(--fc-accent, #9C6E3B);
    display: flex;
    align-items: center;
  }

  .founders-story {
    font-size: 16px;
    line-height: 1.75;
    color: var(--fc-story, #5C5245);
  }

  @media (min-width: 768px) {
    .founders-story {
      font-size: 17px;
      line-height: 1.8;
    }
  }

  .founders-story p { margin: 0; }
  .founders-story p + p { margin-top: 1em; }

  /* Badges Grid */
  .founders-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 36px 0;
    border-top: 1px solid var(--fc-badge-div, #EADDC9);
    border-bottom: 1px solid var(--fc-badge-div, #EADDC9);
    padding: 20px 0;
  }

  .founders-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 8px;
    padding: 0 4px;
  }

  .founders-badge-item:not(:last-child) {
    border-right: 1px solid var(--fc-badge-div, #EADDC9);
  }

  .founders-badge-icon {
    color: var(--fc-accent, #9C6E3B);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .founders-badge-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.3;
  }

  .founders-badge-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--fc-text, #1A1A1A);
    line-height: 1.3;
  }

  @media (max-width: 767px) {
    .founders-badges-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px 8px;
    }
    .founders-badge-item:nth-child(2n) {
      border-right: none !important;
    }
    .founders-badge-label {
      font-size: 11px;
    }
  }

  /* Signature */
  .founders-signature {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .founders-signature-rule {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--fc-accent, #9C6E3B);
    flex-shrink: 0;
  }

  .founders-signature-text p { margin: 0; }

  .founders-signature-names {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--fc-text, #1A1A1A);
  }

  @media (min-width: 768px) {
    .founders-signature-names { font-size: 26px; }
  }

  .founders-signature-role {
    margin-top: 4px !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fc-accent, #9C6E3B);
    opacity: 0.85;
  }

  /* Animations */
  .js-founders .founders-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js-founders .founders-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .js-founders .founders-media-frame.founders-reveal {
    transform: translateY(40px) scale(0.98);
  }

  .js-founders .founders-media-frame.founders-reveal.is-visible {
    transform: translateY(0) scale(1);
  }

  @media (prefers-reduced-motion: reduce) {
    .js-founders .founders-reveal,
    .js-founders .founders-media-frame.founders-reveal,
    .founders-image {
      transition: none !important;
      transform: none !important;
      opacity: 1 !important;
    }
  }
/* END_SECTION:founders */

/* START_SECTION:product-showcase (INDEX:30) */
.product-showcase-section {
    background: #ffffff;
  }
/* END_SECTION:product-showcase */

/* START_SECTION:shopped-by-gold (INDEX:33) */
.shopped-by-gold-section {
    overflow: hidden;
    background-color: var(--sbg-section-bg, #fbf4e3) !important;
  }

  @media (max-width: 767px) {
    .shopped-by-gold-section {
      padding-top: 16px !important;
      padding-bottom: 16px !important;
    }
  }

  .shopped-by-gold-section .font-serif {
    font-family: 'Playfair Display', Georgia, Cambria, 'Times New Roman', Times, serif !important;
  }

  .shopped-by-gold-section h2 {
    color: var(--sbg-heading, #2a2a2a) !important;
  }

  /* Section Eyebrow Title styling */
  .shopped-by-gold-section .sbg-eyebrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
  }

  .shopped-by-gold-section .sbg-eyebrow-line {
    display: inline-block;
    height: 1px;
    width: 30px;
    background-color: var(--sbg-accent-dark, #9c6e3b);
    opacity: 0.6;
  }

  .shopped-by-gold-section .sbg-eyebrow {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-style: italic;
    font-size: 16px;
    color: var(--sbg-accent-dark, #9c6e3b) !important;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  @media (min-width: 640px) {
    .shopped-by-gold-section .sbg-eyebrow {
      font-size: 20px;
    }
    .shopped-by-gold-section .sbg-eyebrow-line {
      width: 40px;
    }
  }

  /* Tagline */
  .shopped-by-gold-section .sbg-tagline {
    font-family: 'Outfit', sans-serif !important;
    color: var(--sbg-accent-dark, #9c6e3b) !important;
    font-weight: 500;
  }

  /* Slider wrapper width */
  .shopped-by-gold-section .slider-wrapper {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  /* Slider card window */
  .shopped-by-gold-section .slider-window {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
    background-color: var(--sbg-slider-bg, #000000);
    position: relative;
  }

  /* Carousel track */
  .shopped-by-gold-section .carousel-track {
    display: flex;
    will-change: transform;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
  }

  /* Carousel slide item */
  .shopped-by-gold-section .carousel-item {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end; /* Mobile default */
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
  }
  @media (max-width: 767px) {
    .shopped-by-gold-section .carousel-item {
      background-size: cover !important;
      background-position: center center !important;
    }
  }
  @media (min-width: 768px) {
    .shopped-by-gold-section .carousel-item {
      min-height: 440px;
      align-items: center; /* Desktop */
    }
  }
  @media (min-width: 1024px) {
    .shopped-by-gold-section .carousel-item {
      min-height: 500px;
    }
  }

  /* Slide inner elements text stagger animations */
  .shopped-by-gold-section .carousel-item .slide-title,
  .shopped-by-gold-section .carousel-item .slide-subtitle,
  .shopped-by-gold-section .carousel-item .slide-desc,
  .shopped-by-gold-section .carousel-item .benefits-grid,
  .shopped-by-gold-section .carousel-item .cta-btn {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .shopped-by-gold-section .carousel-item.is-active .slide-title {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.1s;
  }
  .shopped-by-gold-section .carousel-item.is-active .slide-subtitle {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.2s;
  }
  .shopped-by-gold-section .carousel-item.is-active .slide-desc {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.3s;
  }
  .shopped-by-gold-section .carousel-item.is-active .benefits-grid {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.4s;
  }
  .shopped-by-gold-section .carousel-item.is-active .cta-btn {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.5s;
  }

  /* Background image - now handled via inline style on carousel-item */

  /* Left-fade gradient overlay */
  .shopped-by-gold-section .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(var(--sbg-overlay-rgb, 0, 0, 0), var(--sbg-overlay-start, 0.95)) 0%,
      rgba(var(--sbg-overlay-rgb, 0, 0, 0), 0.5) 50%,
      rgba(var(--sbg-overlay-rgb, 0, 0, 0), 0.85) 100%
    );
    z-index: 1;
  }
  @media (min-width: 768px) {
    .shopped-by-gold-section .slide-overlay {
      background: linear-gradient(
        to right,
        rgba(var(--sbg-overlay-rgb, 0, 0, 0), var(--sbg-overlay-start, 0.95)) 0%,
        rgba(var(--sbg-overlay-rgb, 0, 0, 0), var(--sbg-overlay-mid-desktop, 0.75)) 45%,
        rgba(var(--sbg-overlay-rgb, 0, 0, 0), 0) 90%
      );
    }
  }

  /* Text content wrapper */
  .shopped-by-gold-section .slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    box-sizing: border-box;
  }
  @media (min-width: 640px) {
    .shopped-by-gold-section .slide-content {
      padding: 48px 40px;
    }
  }
  @media (min-width: 768px) {
    .shopped-by-gold-section .slide-content {
      padding: 64px 64px;
    }
  }

  /* Left text block */
  .shopped-by-gold-section .text-block {
    width: 100%;
    text-align: left;
    box-sizing: border-box;
  }
  @media (min-width: 768px) {
    .shopped-by-gold-section .text-block {
      width: 55%;
    }
  }
  @media (min-width: 1024px) {
    .shopped-by-gold-section .text-block {
      width: 48%;
    }
  }

  /* Counter pill */
  .shopped-by-gold-section .counter-pill {
    display: inline-block;
    padding: 4px 14px;
    background-color: var(--sbg-accent, #c29d59) !important;
    color: var(--sbg-dark-text, #1a1a1a) !important;
    font-size: 11px;
    font-weight: 700;
    border-radius: 9999px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
  }

  /* Product title */
  .shopped-by-gold-section .slide-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--sbg-title, #ffffff) !important;
    margin-bottom: 8px;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
  @media (min-width: 640px) {
    .shopped-by-gold-section .slide-title {
      font-size: 36px;
    }
  }
  @media (min-width: 768px) {
    .shopped-by-gold-section .slide-title {
      font-size: 48px;
    }
  }

  /* Product subtitle */
  .shopped-by-gold-section .slide-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--sbg-accent, #c29d59) !important;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  @media (min-width: 640px) {
    .shopped-by-gold-section .slide-subtitle {
      font-size: 14px;
    }
  }

  /* Product description */
  .shopped-by-gold-section .slide-desc {
    font-size: 12px;
    font-weight: 300;
    color: var(--sbg-desc, #d1d5db) !important;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 448px;
  }
  @media (min-width: 640px) {
    .shopped-by-gold-section .slide-desc {
      font-size: 14px;
      margin-bottom: 32px;
    }
  }

  /* Benefits grid */
  .shopped-by-gold-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
    border-top: 1px solid var(--sbg-benefit-divider, rgba(255, 255, 255, 0.1));
    padding-top: 20px;
  }
  @media (min-width: 640px) {
    .shopped-by-gold-section .benefits-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin-bottom: 32px;
    }
  }

  /* Benefit item */
  .shopped-by-gold-section .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Benefit icon container */
  .shopped-by-gold-section .icon-box {
    padding: 6px;
    border-radius: 8px;
    background-color: var(--sbg-icon-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--sbg-icon-border, rgba(255, 255, 255, 0.1));
    color: var(--sbg-accent, #c29d59) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
  }

  /* Benefit SVG style */
  .shopped-by-gold-section .icon-box svg {
    width: 18px;
    height: 18px;
    color: var(--sbg-accent, #c29d59) !important;
    stroke: var(--sbg-accent, #c29d59) !important;
    fill: none;
    display: block;
  }

  /* Benefit text */
  .shopped-by-gold-section .benefit-text {
    font-size: 10px;
    font-weight: 500;
    color: var(--sbg-benefit-text, #e5e7eb) !important;
    line-height: 1.3;
  }
  @media (min-width: 640px) {
    .shopped-by-gold-section .benefit-text {
      font-size: 12px;
    }
  }

  /* Shop Now Button */
  .shopped-by-gold-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: var(--sbg-accent, #c29d59) !important;
    color: var(--sbg-dark-text, #1a1a1a) !important;
    font-weight: 700;
    font-size: 12px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }
  @media (min-width: 640px) {
    .shopped-by-gold-section .cta-btn {
      font-size: 14px;
    }
  }
  .shopped-by-gold-section .cta-btn:hover {
    background-color: var(--sbg-btn-hover, #a98443) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  .shopped-by-gold-section .cta-btn svg {
    width: 16px;
    height: 16px;
    stroke: var(--sbg-dark-text, #1a1a1a) !important;
    display: block;
    fill: none;
  }

  /* Navigation arrows */
  .shopped-by-gold-section .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background-color: var(--sbg-arrow-bg, #f5efe0);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
  }
  @media (max-width: 767px) {
    .shopped-by-gold-section .nav-arrow {
      display: none;
    }
  }
  .shopped-by-gold-section .nav-arrow:hover:not(:disabled) {
    background-color: var(--sbg-arrow-hover, #f9fafb);
    transform: translateY(-50%) scale(1.1);
  }
  .shopped-by-gold-section .nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
  .shopped-by-gold-section .nav-arrow-left {
    left: -70px;
  }
  .shopped-by-gold-section .nav-arrow-right {
    right: -70px;
  }

  /* Navigation dots */
  .shopped-by-gold-section .sbg-dot {
    background-color: rgba(var(--sbg-accent-rgb, 194, 157, 89), 0.3);
  }
  .shopped-by-gold-section .sbg-dot:hover {
    background-color: rgba(var(--sbg-accent-rgb, 194, 157, 89), 0.5);
  }
  .shopped-by-gold-section .sbg-dot.is-active {
    background-color: var(--sbg-accent, #c29d59);
  }
/* END_SECTION:shopped-by-gold */

/* START_SECTION:story-block (INDEX:34) */
.story-block-section {
    background: {{ section.settings.color_section_bg | default: '#fafaf9' }};
    overflow: hidden;
  }

  .story-hero-img {
    will-change: transform;
    transition: transform 8s ease-out;
  }

  .story-hero:hover .story-hero-img {
    transform: scale(1.03);
  }

  .story-hero-overlay {
    background: linear-gradient(
      to top,
      {{ section.settings.color_hero_overlay_bottom | default: 'rgba(250,250,249,0.95)' }} 0%,
      {{ section.settings.color_hero_overlay_mid | default: 'rgba(250,250,249,0.4)' }} 30%,
      {{ section.settings.color_hero_overlay_upper | default: 'rgba(0,0,0,0.02)' }} 60%,
      {{ section.settings.color_hero_overlay_top | default: 'rgba(0,0,0,0.08)' }} 100%
    );
  }

  .story-eyebrow-line {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: {{ section.settings.color_eyebrow_line_light | default: 'rgba(255,255,255,0.5)' }};
  }

  .story-eyebrow-line--dark {
    background: {{ section.settings.color_accent | default: '#111111' }};
  }

  .story-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  @media (min-width: 768px) {
    .story-stats-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
  }

  .story-stat-card {
    text-align: center;
    padding: 24px 16px;
    background: {{ section.settings.color_card_bg | default: '#ffffff' }};
    border: 1px solid {{ section.settings.color_card_border | default: 'rgba(0,0,0,0.06)' }};
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .story-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, {{ section.settings.color_accent | default: '#111111' }} 0%, {{ section.settings.color_accent_secondary | default: '#555555' }} 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .story-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px {{ section.settings.color_card_shadow | default: 'rgba(0,0,0,0.08)' }};
  }

  .story-stat-card:hover::before {
    opacity: 1;
  }

  .story-stat-number {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: {{ section.settings.color_text | default: '#111827' }};
    line-height: 1.1;
  }

  @media (min-width: 768px) {
    .story-stat-number {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .story-stat-number {
      font-size: 2.5rem;
    }
  }

  .story-stat-divider {
    width: 24px;
    height: 2px;
    background: {{ section.settings.color_stat_divider | default: '#e5e5e5' }};
    margin: 10px auto 8px;
    transition: width 0.4s ease, background 0.4s ease;
  }

  .story-stat-card:hover .story-stat-divider {
    width: 36px;
    background: {{ section.settings.color_accent | default: '#111111' }};
  }

  .story-stat-label {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: {{ section.settings.color_text_subtle | default: '#9ca3af' }};
  }

  .story-paragraph {
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .story-paragraph p {
    margin: 0;
  }

  .story-paragraph p + p {
    margin-top: 1em;
  }

  .story-lead {
    font-size: 17px;
    font-weight: 500;
    color: {{ section.settings.color_text | default: '#111827' }};
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .story-lead {
      font-size: 19px;
      line-height: 1.85;
    }
  }

  .story-paragraph:not(.story-lead) {
    font-size: 15px;
    color: {{ section.settings.color_text_muted | default: '#6b7280' }};
    line-height: 1.85;
  }

  @media (min-width: 768px) {
    .story-paragraph:not(.story-lead) {
      font-size: 16px;
      line-height: 1.9;
    }
  }

  .story-pullquote {
    position: relative;
    padding: 24px 0 24px 28px;
    margin: 2.5rem 0;
    border-left: 3px solid {{ section.settings.color_accent | default: '#111111' }};
    background: linear-gradient(135deg, {{ section.settings.color_pullquote_bg_start | default: 'rgba(255,255,255,0.8)' }} 0%, {{ section.settings.color_pullquote_bg_end | default: 'rgba(255,255,255,0)' }} 100%);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @media (min-width: 768px) {
    .story-pullquote {
      padding: 28px 0 28px 32px;
      margin: 3rem 0;
    }
  }

  .story-pullquote p {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    color: {{ section.settings.color_text | default: '#111827' }};
  }

  .story-pullquote-mark {
    position: absolute;
    top: 8px;
    left: -4px;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: {{ section.settings.color_accent | default: '#111111' }};
    font-family: Georgia, serif;
    opacity: 0.15;
  }

  @media (min-width: 768px) {
    .story-pullquote p {
      font-size: 24px;
      line-height: 1.45;
    }

    .story-pullquote-mark {
      font-size: 72px;
      top: 4px;
    }
  }

  .story-signature-block {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .story-signature-inner {
    padding: 32px 28px;
    background: {{ section.settings.color_card_bg | default: '#ffffff' }};
    border: 1px solid {{ section.settings.color_card_border | default: 'rgba(0,0,0,0.06)' }};
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .story-signature-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, {{ section.settings.color_accent | default: '#111111' }} 0%, {{ section.settings.color_accent_secondary | default: '#555555' }} 50%, {{ section.settings.color_accent | default: '#111111' }} 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .story-signature-inner:hover {
    box-shadow: 0 16px 48px {{ section.settings.color_card_shadow | default: 'rgba(0,0,0,0.08)' }};
    transform: translateY(-2px);
  }

  .story-signature-inner:hover::after {
    opacity: 1;
  }

  .story-signature-img-wrap {
    margin-bottom: 16px;
  }

  .story-signature-img {
    height: auto;
    width: auto;
    max-width: 120px;
  }

  @media (min-width: 768px) {
    .story-signature-img {
      max-width: 150px;
    }
  }

  .story-signee-name {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: {{ section.settings.color_text_subtle | default: '#9ca3af' }};
  }

  .story-signature-line {
    margin-top: 20px;
    height: 2px;
    width: 40px;
    background: {{ section.settings.color_accent | default: '#111111' }};
    border-radius: 1px;
    transition: width 0.4s ease;
  }

  .story-signature-inner:hover .story-signature-line {
    width: 60px;
  }

  .story-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: {{ section.settings.color_text | default: '#111827' }};
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid {{ section.settings.color_accent | default: '#111111' }};
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .story-cta:hover {
    background: {{ section.settings.color_accent | default: '#111111' }};
    color: {{ section.settings.color_cta_hover_text | default: '#ffffff' }};
    gap: 12px;
  }

  .story-cta:hover .story-cta-arrow {
    transform: translateX(2px);
  }

  .story-cta-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
  }

  .story-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .story-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 767px) {
    .story-stat-card {
      padding: 20px 12px;
    }

    .story-signature-inner {
      padding: 24px 20px;
    }

    .story-cta {
      padding: 10px 20px;
    }
  }
/* END_SECTION:story-block */

/* START_SECTION:tabbed-collections (INDEX:35) */
.section-tabbed-collections .tc-title-area {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .section-tabbed-collections .tc-eyebrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
    width: 100%;
  }

  .section-tabbed-collections .tc-eyebrow-line {
    display: inline-block;
    height: 1px;
    width: 30px;
    background-color: {{ section.settings.eyebrow_line_color | default: '#9C6E3B' }};
    opacity: 0.6;
  }

  .section-tabbed-collections .tc-eyebrow {
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px;
    color: {{ section.settings.eyebrow_text_color | default: '#9C6E3B' }} !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1;
  }

  @media (min-width: 640px) {
    .section-tabbed-collections .tc-eyebrow {
      font-size: 15px;
    }
    .section-tabbed-collections .tc-eyebrow-line {
      width: 40px;
    }
  }

  /* Heading */
  .section-tabbed-collections .tc-heading {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 700;
    color: {{ section.settings.heading_text_color | default: '#1E2922' }} !important;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-top: 4px;
    margin-bottom: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-tabbed-collections .tc-heading .tc-accent {
    color: {{ section.settings.heading_accent_color | default: '#D07A2B' }} !important;
  }

  /* Subtitle / Tagline */
  .section-tabbed-collections .tc-tagline {
    font-family: 'Outfit', sans-serif !important;
    color: {{ section.settings.tagline_text_color | default: '#4B5563' }} !important;
    font-size: 14px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (min-width: 640px) {
    .section-tabbed-collections .tc-tagline {
      font-size: 16px;
    }
  }
/* END_SECTION:tabbed-collections */

/* START_SECTION:video-hero (INDEX:37) */
.video-hero-section {
    background: {{ section.settings.section_background_color | default: '#fafaf9' }};
    position: relative;
    width: 100%;
  }
  .video-hero-section video::-webkit-media-controls {
    display: none !important;
  }
  .video-hero-section video::-webkit-media-controls-enclosure {
    display: none !important;
  }
/* END_SECTION:video-hero */