/** Shopify CDN: Minification failed

Line 883:12 Unexpected "{"
Line 883:21 Expected ":"
Line 884:16 Expected identifier but found whitespace
Line 884:18 Unexpected "{"
Line 884:27 Expected ":"
Line 884:78 Expected ":"
Line 885:19 Expected identifier but found whitespace
Line 885:21 Unexpected "{"
Line 885:30 Expected ":"
Line 885:84 Expected ":"
... and 10 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:footer-services (INDEX:18) */
.footer-services {
    padding: 6rem 0;
    background-color: rgb(var(--nb-white, 255, 255, 255));
    color: rgb(var(--nb-black, 0, 0, 0));
  }

  .footer-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  @media screen and (min-width: 750px) {
    .footer-services__grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
    }
  }

  .footer-services__icon img {
    width: 4.2rem;
    height: 4.2rem;
    object-fit: contain;
    margin: 0 auto 1.6rem;
  }

  .footer-services__label {
    margin: 0 0 0.8rem;
  }

  .footer-services__text {
    margin: 0 0 1.6rem;
    font-family: var(--font-body-family);
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: var(--nb-tracking-body, 0.028rem);
  }

  .footer-services__cta {
    color: rgb(var(--nb-black, 0, 0, 0));
  }
/* END_SECTION:footer-services */

/* START_SECTION:hero-cinematic (INDEX:21) */
/* Full-bleed, no borders, no padding, no section margin. */
  .section--hero-cinematic {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .hero-cinematic {
    position: relative;
    width: 100%;
    /* Full viewport height; svh corrects for mobile browser chrome. */
    height: 100vh;
    height: 100svh;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    isolation: isolate;
  }

  .hero-cinematic__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: rgb(var(--lux-charcoal, 251, 246, 240));
  }

  /* object-fit: cover full-bleed video. width/height overrides beat the
     intrinsic attributes video_tag adds to the <video>. */
  .hero-cinematic__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .hero-cinematic__video--placeholder svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Dark gradient: transparent at top → darker at the bottom.
     pointer-events: none so it never blocks the video. */
  .hero-cinematic__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      rgba(17, 17, 17, 0) 0%,
      rgba(17, 17, 17, 0.15) 45%,
      rgba(17, 17, 17, 0.55) 100%
    );
  }

  /* Centered horizontally + vertically. */
  .hero-cinematic__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    color: rgb(var(--lux-ivory, 67, 64, 59));
    /* Scroll-fade transition (smooth, within 0.3–0.6s). */
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
  }

  /* Applied by JS after scrolling past 80px. */
  .hero-cinematic__content.is-faded {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
  }

  .hero-cinematic__heading {
    margin: 0;
    font-family: var(--font-heading-family);
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.2em;
    line-height: 1.1;
    font-size: clamp(3rem, 6vw, 6.4rem);
    color: rgb(var(--lux-ivory, 67, 64, 59));
  }

  .hero-cinematic__subheading {
    margin: 2.4rem 0 0;
    font-family: var(--font-body-family);
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.32em;
    line-height: 1.6;
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
    color: rgba(var(--lux-ivory, 67, 64, 59), 0.85);
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-cinematic__content {
      transition: none;
    }
  }
/* END_SECTION:hero-cinematic */

/* START_SECTION:hero-editorial (INDEX:22) */
.hero-editorial {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
  }

  /* Cinematic heights. svh keeps the true viewport on mobile browsers. */
  .hero-editorial--full {
    min-height: 100svh;
  }

  .hero-editorial--tall {
    min-height: 85svh;
  }

  .hero-editorial--large {
    min-height: 72rem;
  }

  .hero-editorial__media,
  .hero-editorial__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
  }

  .hero-editorial__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Art-directed responsive images */
  .hero-editorial__image--mobile {
    display: block;
  }

  .hero-editorial__image--desktop {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .hero-editorial__image--mobile {
      display: none;
    }

    .hero-editorial__image--desktop {
      display: block;
    }
  }

  /* Warm charcoal wash for legibility + cinematic depth. */
  .hero-editorial__overlay {
    background: linear-gradient(
      to bottom,
      rgba(17, 17, 17, calc(var(--hero-overlay) * 0.55)) 0%,
      rgba(17, 17, 17, calc(var(--hero-overlay) * 0.35)) 45%,
      rgba(17, 17, 17, var(--hero-overlay)) 100%
    );
  }

  .hero-editorial__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 12rem;
    padding-bottom: 12rem;
    color: rgb(var(--lux-ivory, 67, 64, 59));
  }

  /* Vertical placement */
  .hero-editorial--align-center .hero-editorial__content {
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .hero-editorial--align-bottom .hero-editorial__content {
    justify-content: flex-end;
    text-align: center;
    align-items: center;
  }

  .hero-editorial--align-bottom-left .hero-editorial__content {
    justify-content: flex-end;
    text-align: left;
    align-items: flex-start;
  }

  .hero-editorial__eyebrow {
    margin: 0 0 2.4rem;
    font-size: 1.2rem;
    color: rgba(var(--lux-ivory, 67, 64, 59), 0.82);
  }

  .hero-editorial__brand {
    margin: 0;
    font-family: var(--font-heading-family);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.06em;
    /* Large, restrained, cinematic. */
    font-size: clamp(4.8rem, 11vw, 12rem);
    color: rgb(var(--lux-ivory, 67, 64, 59));
  }

  .hero-editorial__tagline {
    margin: 3rem 0 0;
    max-width: 46rem;
    font-size: 1.5rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: rgba(var(--lux-ivory, 67, 64, 59), 0.85);
  }

  .hero-editorial--align-bottom-left .hero-editorial__tagline {
    margin-left: 0;
  }

  .hero-editorial__cta {
    margin-top: 4rem;
    align-self: inherit;
    color: rgb(var(--lux-ivory, 67, 64, 59));
    font-family: var(--font-body-family);
    font-size: 1.25rem;
    letter-spacing: 0.14em;
    text-transform: none;
    text-decoration: none;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(var(--lux-ivory, 67, 64, 59), 0.5);
    transition: border-color 0.3s ease, opacity 0.3s ease;
  }

  .hero-editorial__cta:hover {
    border-color: rgb(var(--lux-ivory, 67, 64, 59));
  }

  /* Quiet scroll cue */
  .hero-editorial__scroll {
    position: absolute;
    bottom: 3.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .hero-editorial__scroll-line {
    display: block;
    width: 1px;
    height: 5.6rem;
    background: linear-gradient(
      to bottom,
      rgba(var(--lux-ivory, 67, 64, 59), 0) 0%,
      rgba(var(--lux-ivory, 67, 64, 59), 0.7) 100%
    );
    animation: hero-scroll-cue 2.4s ease-in-out infinite;
    transform-origin: top;
  }

  @keyframes hero-scroll-cue {
    0%,
    100% {
      transform: scaleY(0.4);
      opacity: 0.4;
    }
    50% {
      transform: scaleY(1);
      opacity: 1;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-editorial__scroll-line {
      animation: none;
    }
  }
/* END_SECTION:hero-editorial */

/* START_SECTION:hero-video-banner (INDEX:23) */
.hero-video-banner {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: var(--ls-cream, #FBF6F0);
    line-height: 0;
  }

  /* Natural aspect ratio — the whole frame shows, nothing cropped. */
  .hero-video-banner--auto .hero-video-banner__media {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Fixed-height banner — fills the band, cover-cropped. */
  .hero-video-banner--medium,
  .hero-video-banner--tall {
    line-height: normal;
  }

  .hero-video-banner--medium .hero-video-banner__media,
  .hero-video-banner--tall .hero-video-banner__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* keep the top of the frame (bottle head) when cropping */
    display: block;
  }

  .hero-video-banner--medium {
    height: 60vh;
  }

  .hero-video-banner--tall {
    height: 82vh;
  }

  @media screen and (max-width: 749px) {
    .hero-video-banner--medium {
      height: 46vh;
    }
    .hero-video-banner--tall {
      height: 60vh;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-video-banner__media[autoplay] {
      display: block;
    }
  }
/* END_SECTION:hero-video-banner */

/* START_SECTION:hero-video (INDEX:24) */
.hero-video {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
  }

  /* Cinematic heights — svh tracks the true mobile viewport. */
  .hero-video--full {
    min-height: 100svh;
  }

  .hero-video--tall {
    min-height: 85svh;
  }

  .hero-video--large {
    min-height: 72rem;
  }

  .hero-video--medium {
    min-height: 56rem;
  }

  .hero-video__media-wrap,
  .hero-video__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
  }

  /* Warm backdrop prevents a white flash before the first frame paints. */
  .hero-video__media-wrap {
    background-color: rgb(var(--lux-charcoal, 42, 39, 36));
  }

  /* Full-bleed cover. The width/height overrides beat the intrinsic
     width/height attributes that video_tag adds to the <video>. */
  .hero-video__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    /* Fill the hero anchored to the top, with a small zoom so a bit more
       is trimmed off the bottom (top of the frame kept). */
    object-fit: cover;
    object-position: center top;
    transform: scale(1.08);
    transform-origin: center top;
    display: block;
  }

  /* Warm charcoal wash for legibility + depth. */
  .hero-video__overlay {
    background: linear-gradient(
      to bottom,
      rgba(17, 17, 17, calc(var(--hero-overlay) * 0.55)) 0%,
      rgba(17, 17, 17, calc(var(--hero-overlay) * 0.35)) 45%,
      rgba(17, 17, 17, var(--hero-overlay)) 100%
    );
  }

  .hero-video__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 12rem;
    padding-bottom: 12rem;
    color: rgb(var(--lux-ivory, 246, 242, 234));
  }

  .hero-video--align-center .hero-video__content {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-video--align-bottom .hero-video__content {
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }

  .hero-video--align-bottom-left .hero-video__content {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
  }

  .hero-video__eyebrow {
    margin: 0 0 2.4rem;
    font-size: 1.2rem;
    color: rgba(var(--lux-ivory, 246, 242, 234), 0.82);
  }

  .hero-video__heading {
    margin: 0;
    font-family: var(--font-heading-family);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.08em;
    font-size: clamp(2.6rem, 4vw, 4rem);
    color: rgb(var(--lux-ivory, 246, 242, 234));
  }

  .hero-video__subheading {
    margin: 3rem 0 0;
    max-width: 46rem;
    font-size: 1.5rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: rgba(var(--lux-ivory, 246, 242, 234), 0.85);
  }

  .hero-video--align-center .hero-video__subheading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-video__cta {
    margin-top: 4rem;
    color: rgb(var(--lux-ivory, 246, 242, 234));
    font-family: var(--font-body-family);
    font-size: 1.25rem;
    letter-spacing: 0.14em;
    text-transform: none;
    text-decoration: none;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(var(--lux-ivory, 246, 242, 234), 0.5);
    transition: border-color 0.3s ease;
  }

  .hero-video__cta:hover {
    border-color: rgb(var(--lux-ivory, 246, 242, 234));
  }
/* END_SECTION:hero-video */

/* START_SECTION:lisas-feature (INDEX:27) */
.ls-feature--centered { text-align: center; }
  .ls-feature--centered .ls-feature__body { margin-inline: auto; }
  .ls-feature--centered .ls-feature__ctas { justify-content: center; }
  .ls-feature__grid { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
  .ls-feature--split .ls-feature__grid { grid-template-columns: 1fr 1fr; }
  .ls-feature__img { width: 100%; height: auto; display: block; }
  .ls-feature__overline { margin-bottom: 1rem; }
  .ls-feature__body { margin: 1.25rem 0 1.75rem; color: inherit; opacity: 0.85; }
  .ls-feature__body p { max-width: 52ch; }
  .ls-feature--centered .ls-feature__body p { margin-inline: auto; }
  .ls-feature__ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
  @media (max-width: 860px) { .ls-feature--split .ls-feature__grid { grid-template-columns: 1fr; } .ls-feature__media { order: -1; } }
/* END_SECTION:lisas-feature */

/* START_SECTION:lisas-flavour-chooser (INDEX:28) */
.ls-range__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); text-align: left; margin-top: clamp(2.5rem, 6vw, 4rem); }
  .ls-card { display: flex; flex-direction: column; text-decoration: none; color: var(--ls-ink); padding-bottom: 1.75rem; border-top: 2px solid var(--accent); transition: transform 0.5s ease; }
  .ls-card[data-accent='red'] { --accent: var(--ls-red); }
  .ls-card[data-accent='amber'] { --accent: var(--ls-amber); }
  .ls-card[data-accent='brown'] { --accent: var(--ls-brown); }
  .ls-card:hover { transform: translateY(-6px); }
  .ls-card__media { margin: 1.5rem 0; min-height: 1px; }
  .ls-card__img { width: 100%; height: auto; object-fit: contain; display: block; }
  .ls-card__name { color: var(--accent); font-family: var(--ls-serif); font-size: 1.6rem; font-weight: 500; margin: 0; }
  .ls-card__notes { margin-top: 0.5rem; color: var(--ls-ink-soft); }
  .ls-card__hook { margin-top: 1rem; font-family: var(--ls-serif); font-size: 1.25rem; }
  .ls-card__go { margin-top: 1.25rem; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--accent); }
  .ls-range__footnote { margin-top: clamp(2.5rem, 5vw, 3.5rem); color: var(--ls-ink-soft); font-size: 0.9rem; letter-spacing: 0.03em; }
  @media (max-width: 760px) { .ls-range__grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; } }
/* END_SECTION:lisas-flavour-chooser */

/* START_SECTION:lisas-hero (INDEX:29) */
.ls-hero { position: relative; min-height: min(94vh, 900px); display: grid; align-items: end; overflow: hidden; background: radial-gradient(125% 95% at 50% 18%, #5c4736 0%, #3c2d23 55%, #2a1f18 100%); width: 100vw; margin-left: calc(50% - 50vw); }
  .ls-hero__media { position: absolute; inset: 0; }
  .ls-hero__img, .ls-hero__ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  .ls-hero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,14,10,0.1) 40%, rgba(20,14,10,0.72) 100%); }
  .ls-hero__content { position: relative; z-index: 1; padding-block: clamp(3rem, 8vw, 7rem); color: #fff; }
  .ls-hero__overline { color: rgba(255,255,255,0.9); margin-bottom: 1.4rem; }
  .ls-hero__headline { color: #fff; max-width: 16ch; }
  .ls-hero__cta { margin-top: 2rem; }
/* END_SECTION:lisas-hero */

/* START_SECTION:lisas-newsletter (INDEX:30) */
.ls-nl__body { margin: 1.1rem auto 2rem; color: var(--ls-ink-soft); }
  .ls-nl__form { display: flex; gap: 0.6rem; max-width: 28rem; margin-inline: auto; }
  .ls-nl__form input[type=email] { flex: 1; padding: 0.95rem 1.1rem; font: inherit; color: var(--ls-ink); background: var(--ls-paper); border: 1px solid var(--ls-line); border-radius: 2px; }
  .ls-nl__ok { flex-basis: 100%; margin-top: 1rem; font-family: var(--ls-serif); font-size: 1.4rem; color: var(--ls-red); }
  .ls-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  @media (max-width: 480px) { .ls-nl__form { flex-direction: column; } }
/* END_SECTION:lisas-newsletter */

/* START_SECTION:lisas-statement (INDEX:31) */
.ls-statement__line { font-family: var(--ls-serif); font-size: clamp(1.8rem, 1rem + 3.4vw, 3.4rem); line-height: 1.25; max-width: 20ch; margin-inline: auto; color: var(--ls-ink); }
  .ls-statement__line--2 { margin-top: 0.4rem; color: var(--ls-red); }
/* END_SECTION:lisas-statement */

/* START_SECTION:lisas-story (INDEX:32) */
.ls-story { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
  .ls-story--media-right .ls-story__media { order: 2; }
  .ls-story__media { display: flex; min-height: 460px; }
  .ls-story__img { width: 100%; height: 100%; object-fit: cover; }
  .ls-story__ph { flex: 1; aspect-ratio: auto; }
  .ls-story__text { padding-block: var(--ls-section-y); align-self: center; }
  .ls-story__rte p { color: var(--ls-ink); max-width: 46ch; }
  .ls-story__rte p + p { margin-top: 1.5rem; }
  @media (max-width: 860px) { .ls-story { grid-template-columns: 1fr; } .ls-story__media { order: -1; } }
/* END_SECTION:lisas-story */

/* START_SECTION:product-editorial-band (INDEX:60) */
.product-editorial {
    padding: 7rem 0;
    background-color: rgb(var(--nb-white, 255, 255, 255));
    color: rgb(var(--nb-black, 0, 0, 0));
    text-align: center;
  }

  .product-editorial__eyebrow {
    margin: 0 0 4rem;
    font-family: var(--font-body-family);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: var(--nb-tracking-btn, 0.192rem);
  }

  .product-editorial__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 90rem;
    margin: 0 auto;
  }

  @media screen and (min-width: 750px) {
    .product-editorial__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 5rem;
    }
  }

  .product-editorial__mini {
    margin: 0 0 1.2rem;
    font-family: var(--font-body-family);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: var(--nb-tracking-btn, 0.192rem);
    color: rgb(var(--nb-black, 0, 0, 0));
  }

  .product-editorial__desc {
    margin: 0;
    font-family: var(--font-body-family);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7143;
    letter-spacing: var(--nb-tracking-body, 0.028rem);
    color: rgb(var(--nb-black, 0, 0, 0));
  }
/* END_SECTION:product-editorial-band */

/* START_SECTION:product-story (INDEX:62) */
.product-story {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 0 !important;
    background: rgb(var(--nb-black, 0, 0, 0));
    color: rgb(var(--nb-white, 255, 255, 255));
  }

  @media screen and (min-width: 750px) {
    .product-story {
      grid-template-columns: 1fr 1fr;
    }
    /* text_first puts the copy on the left, image on the right */
    .product-story--text_first .product-story__media {
      order: 2;
    }
  }

  .product-story__media {
    overflow: hidden;
    min-height: 42vh;
  }

  .product-story__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-story__content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 7vw, 8rem) 2rem;
  }

  .product-story__inner {
    max-width: 46rem;
    text-align: center;
  }

  .product-story__eyebrow {
    margin: 0 0 1.2rem;
    color: rgb(var(--nb-accent, 184, 149, 106));
  }

  .product-story__heading {
    font-family: var(--font-heading-family);
    font-weight: 500;
    font-size: clamp(2.2rem, 3vw, 3.4rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin: 0 0 1.6rem;
  }

  .product-story__body {
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: rgba(var(--nb-white, 255, 255, 255), 0.85);
  }

  .product-story__cta {
    margin-top: 2rem;
    color: rgb(var(--nb-white, 255, 255, 255));
  }
/* END_SECTION:product-story */

/* START_SECTION:product-tasting-notes (INDEX:63) */
.tasting-notes {
    text-align: center;
    color: rgb(var(--nb-white, 255, 255, 255));
  }

  .tasting-notes__eyebrow {
    margin: 0 0 1rem;
    color: rgb(var(--nb-accent, 184, 149, 106));
  }

  .tasting-notes__heading {
    font-family: var(--font-heading-family);
    font-weight: 500;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: 0.02em;
    margin: 0 0 3.5rem;
  }

  .tasting-notes__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100rem;
    margin: 0 auto;
  }

  @media screen and (min-width: 750px) {
    .tasting-notes__grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 3.5rem;
    }
  }

  .tasting-notes__item {
    padding: 0 1rem;
  }

  .tasting-notes__item + .tasting-notes__item {
    border-top: 1px solid rgba(var(--nb-white, 255, 255, 255), 0.14);
    padding-top: 3rem;
  }

  @media screen and (min-width: 750px) {
    .tasting-notes__item + .tasting-notes__item {
      border-top: 0;
      border-left: 1px solid rgba(var(--nb-white, 255, 255, 255), 0.14);
      padding-top: 0;
    }
  }

  .tasting-notes__label {
    font-family: var(--font-body-family);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.22em;
    color: rgb(var(--nb-accent, 184, 149, 106));
    margin: 0 0 1.2rem;
  }

  .tasting-notes__text {
    font-family: var(--font-body-family);
    font-size: 1.5rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: rgba(var(--nb-white, 255, 255, 255), 0.9);
    margin: 0;
  }
/* END_SECTION:product-tasting-notes */

/* START_SECTION:shop-by-category (INDEX:68) */
.shop-category__heading {
    font-family: var(--font-heading-family);
    text-align: center;
    font-size: clamp(2.6rem, 3.6vw, 3.8rem);
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 1.2rem;
  }
  .shop-category__description {
    font-family: var(--font-body-family);
    text-align: center;
    max-width: 54rem;
    margin: 0 auto 4.8rem;
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.72;
  }
  .shop-category__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 3), 1fr);
    gap: 3rem;
  }
  .shop-category__tile {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  /* plain square tile — no rounded corners */
  .shop-category__media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--ls-sand, #F1EADF);
  }
  .shop-category__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .shop-category__tile:hover .shop-category__img {
    transform: scale(1.04);
  }
  .shop-category__label {
    display: block;
    text-align: center;
    margin-top: 1.6rem;
    font-family: var(--font-body-family);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 1.15rem;
  }
  @media screen and (max-width: 749px) {
    .shop-category__grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  }
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }
  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }
/* END_SECTION:shop-by-category */

/* START_SECTION:split-video-text (INDEX:70) */
.split-vt {
    padding: 8rem 0;
  }
  .split-vt__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
  }
  .split-vt--media-right .split-vt__media { order: 2; }

  .split-vt__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--ls-sand, #F4E9DF);
  }
  .split-vt__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .split-vt__video--placeholder svg { width: 100%; height: 100%; object-fit: cover; }

  .split-vt__content {
    max-width: 44rem;
  }
  .split-vt--media-right .split-vt__content { order: 1; margin-left: auto; }

  .split-vt__eyebrow {
    text-transform: none;
    letter-spacing: 0.22em;
    font-size: 1.1rem;
    opacity: 0.7;
    margin: 0 0 1.6rem;
  }
  /* Heading serif (Fraunces) treatment for the split heading */
  .split-vt__heading {
    font-family: var(--font-heading-family);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: clamp(4rem, 5vw, 5.4rem);
    line-height: 1.15;
    margin: 0 0 2rem;
  }
  .split-vt__text {
    font-size: 1.3rem;    /* 13px — matching the Story / Mixology body */
    line-height: 2.1rem;  /* 21px */
    opacity: 0.85;
    margin: 0 0 2.6rem;
  }

  @media screen and (max-width: 749px) {
    .split-vt { padding: 5rem 0; }
    .split-vt__inner { grid-template-columns: 1fr; gap: 3rem; }
    .split-vt--media-right .split-vt__media,
    .split-vt--media-right .split-vt__content { order: 0; }
    .split-vt__content { max-width: none; }
  }
/* END_SECTION:split-video-text */