/** Shopify CDN: Minification failed

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

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:lp-faq (INDEX:26) */
.lp-faq {
    background: var(--lp-paper, #ffffff);
    padding: clamp(32px, 5vw, 56px) clamp(20px, 8vw, 120px);
    font-family: "Figtree", -apple-system, system-ui, "Helvetica Neue", sans-serif;
    line-height: 1.6;
  }

  .lp-faq__inner {
    max-width: 1440px;
    margin: 0 auto;
  }

  .lp-faq__heading {
    font-family: "Playfair", Georgia, serif;
    font-size: clamp(24px, 3.2vw, 40px);
    font-weight: 700;
    color: #313131;
    text-align: center;
    margin: 0 0 clamp(24px, 3vw, 40px);
    line-height: 100%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }

  .lp-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 48px);
    align-items: start;
  }

  .lp-faq__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .lp-faq__item {
    border: 1px solid #543A1F;
    border-radius: 8px;
    padding: 16px 24px;
    cursor: pointer;
    background: transparent;
    transition: background 0.2s ease;
  }

  .lp-faq__question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 0;
    text-align: left;
    cursor: pointer;
    display: block;
    font-family: "Playfair", Georgia, serif;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 700;
    font-style: normal;
    line-height: 130%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #313131;
    transition: color 0.2s ease;
  }

  .lp-faq__question-text {
    display: inline;
  }

  .lp-faq__item--open .lp-faq__question {
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #543A1F;
  }

  .lp-faq__answer {
    display: none;
    margin-top: 4px;
    padding: 0;
    border: 0;
    font-family: "Figtree", -apple-system, system-ui, "Helvetica Neue", sans-serif;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #1E1E1E;
  }

  .lp-faq__answer p {
    margin: 0 0 8px 0;
  }

  .lp-faq__answer p:last-child {
    margin-bottom: 0;
  }

  .lp-faq__item--open .lp-faq__answer {
    display: block;
  }

  @media (max-width: 989px) {
    .lp-faq {
      padding: clamp(32px, 5vw, 48px) clamp(20px, 5vw, 60px);
    }
    .lp-faq__grid {
      gap: clamp(16px, 2.5vw, 32px);
    }
  }

  @media (max-width: 749px) {
    .lp-faq {
      padding: 32px 20px;
    }
    .lp-faq__grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .lp-faq__heading {
      font-size: 24px;
      margin-bottom: 24px;
    }
  }
/* END_SECTION:lp-faq */

/* START_SECTION:lp-hero (INDEX:27) */
:root {
    --lp-pill-bg: #98703033;
    --lp-pill-border: #543A1F;
    --lp-pill-text: #543A1F;
    --lp-heading-dark: #313131;
    --lp-heading-accent: #543A1F;
    --lp-kicker-dark: #1E1E1E;
    --lp-kicker-accent: #543A1F;
    --lp-meta-text: #1E1E1E;
    --lp-star-color: #FFA502;
    --lp-paper: #FFFFFF;
    --lp-serif: "Playfair", "Playfair Display", Georgia, serif;
    --lp-sans: "Figtree", -apple-system, system-ui, "Helvetica Neue", sans-serif;
  }

  .lp-hero {
    background: var(--lp-paper);
    font-family: var(--lp-sans);
    width: 100%;
  }

  /* Strip any vertical spacing the theme puts on the wrapper around this section */
  .shopify-section:has(> .lp-hero) {
    margin-block: 0 !important;
    padding-block: 0 !important;
  }

  .lp-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    column-gap: clamp(20px, 4vw, 48px);
    padding: 0 0 0 clamp(20px, 7vw, 100px);
  }

  .lp-hero__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 48px);
    padding-top: clamp(28px, 5vw, 65px);
    padding-bottom: clamp(28px, 5vw, 65px);
  }

  .lp-hero__text-top,
  .lp-hero__text-bottom {
    display: block;
  }

  /* ===== Review Pill ===== */
  .lp-hero__review-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lp-pill-bg);
    border: 1px solid var(--lp-pill-border);
    border-radius: 500px;
    padding: 8px 16px;
    color: var(--lp-pill-text) !important;
    font-family: var(--lp-sans) !important;
    font-weight: 500 !important;
    font-size: clamp(13px, 1.4vw, 18px) !important;
    line-height: 150% !important;
    letter-spacing: -0.03em !important;
    text-align: center;
    margin-bottom: 19px;
  }

  .lp-hero__stars {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    line-height: 0;
  }

  .lp-hero__star {
    display: inline-block;
    line-height: 0;
  }

  .lp-hero__star svg {
    display: block;
    width: clamp(13px, 1.4vw, 18px);
    height: auto;
  }

  .lp-hero__review-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .lp-hero__review-score {
    font-weight: 700;
  }

  /* ===== Heading ===== */
  .lp-hero__heading {
    font-family: var(--lp-serif) !important;
    font-weight: 700 !important;
    font-size: clamp(28px, 4.5vw, 55px) !important;
    line-height: 100% !important;
    letter-spacing: -0.01em !important;
    text-transform: uppercase !important;
    color: var(--lp-heading-dark) !important;
    margin: 0;
  }

  .lp-hero__heading p {
    margin: 0;
    padding: 0;
    font-family: var(--lp-serif) !important;
    font-weight: 700 !important;
    font-size: clamp(28px, 4.5vw, 55px) !important;
    line-height: 100% !important;
    letter-spacing: -0.01em !important;
    text-transform: uppercase !important;
    color: var(--lp-heading-dark) !important;
  }

  .lp-hero__heading em {
    color: var(--lp-heading-accent) !important;
    font-style: italic !important;
    font-family: var(--lp-serif) !important;
    font-weight: 700 !important;
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
  }

  /* ===== Kicker ===== */
  .lp-hero__kicker {
    font-family: var(--lp-sans) !important;
    font-weight: 500 !important;
    font-size: clamp(14px, 1.7vw, 20px) !important;
    line-height: 150% !important;
    letter-spacing: -0.03em !important;
    color: var(--lp-kicker-dark) !important;
    margin: 0 0 19px 0;
  }

  .lp-hero__kicker p {
    margin: 0;
    padding: 0;
    font-family: var(--lp-sans) !important;
    font-weight: 500 !important;
    font-size: clamp(14px, 1.7vw, 20px) !important;
    line-height: 150% !important;
    letter-spacing: -0.03em !important;
    color: var(--lp-kicker-dark) !important;
  }

  .lp-hero__kicker em {
    color: var(--lp-kicker-accent) !important;
    font-style: normal !important;
    font-family: var(--lp-sans) !important;
    font-weight: 500 !important;
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
  }

  /* ===== Byline ===== */
  .lp-hero__byline {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .lp-hero__avatar {
    width: clamp(44px, 5vw, 60px);
    height: clamp(44px, 5vw, 60px);
    border-radius: 50%;
    background: #543A1F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-sans);
    font-size: clamp(13px, 1.5vw, 18px);
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 1;
    letter-spacing: 0.02em;
  }

  .lp-hero__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .lp-hero__byline-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .lp-hero__byline-name {
    font-family: var(--lp-sans) !important;
    font-weight: 700 !important;
    font-size: clamp(14px, 1.7vw, 20px) !important;
    line-height: 150% !important;
    letter-spacing: -0.03em !important;
    color: var(--lp-meta-text) !important;
    margin: 0 0 8px 0;
  }

  .lp-hero__byline-meta {
    font-family: var(--lp-sans) !important;
    font-weight: 400 !important;
    font-size: clamp(12px, 1.3vw, 16px) !important;
    line-height: 150% !important;
    letter-spacing: -0.03em !important;
    color: var(--lp-meta-text) !important;
    margin: 0;
  }

  /* ===== Image Column ===== */
  .lp-hero__image-col {
    overflow: hidden;
    background: #F4EFE6;
    position: relative;
  }

  .lp-hero__image-col img,
  .lp-hero__image-col svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  /* ===== Tablet ===== */
  @media (max-width: 1024px) {
    .lp-hero__inner {
      padding-left: clamp(20px, 5vw, 60px);
      column-gap: clamp(20px, 3vw, 36px);
    }
  }

  /* ===== Mobile ===== */
  @media (max-width: 768px) {
    .lp-hero__inner {
      grid-template-columns: 1fr;
      padding: 0;
      column-gap: 0;
      row-gap: 0;
    }

    .lp-hero__text {
      order: 2;
      justify-content: flex-start;
      gap: clamp(20px, 5vw, 32px);
      padding: clamp(24px, 6vw, 36px) clamp(16px, 5vw, 24px);
    }

    .lp-hero__image-col {
      order: 1;
      height: clamp(320px, 85vw, 480px);
      min-height: 0;
    }

    .lp-hero__text-top,
    .lp-hero__text-bottom {
      display: flex;
      flex-direction: column;
      gap: clamp(16px, 4vw, 20px);
    }
  }

  @media (max-width: 480px) {
    .lp-hero__heading {
      font-size: clamp(26px, 8vw, 34px);
    }
    .lp-hero__kicker,
    .lp-hero__byline-name {
      font-size: clamp(14px, 4vw, 17px);
    }
  }
/* END_SECTION:lp-hero */

/* START_SECTION:lp-marquee (INDEX:28) */
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@1,5..1200,700&display=swap');

  .lp-marquee {
    height: 42px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .lp-marquee__track-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
  }

  .lp-marquee__track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation: lp-marquee 22s linear infinite;
    flex-shrink: 0;
  }

  .lp-marquee__track span,
  .lp-marquee__track p {
    font-family: 'Playfair', Georgia, serif !important;
    font-weight: 700 !important;
    font-style: italic !important;
    font-size: clamp(14px, 2vw, 20px) !important;
    line-height: 110% !important;
    letter-spacing: -1px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    vertical-align: middle !important;
    padding: 0 16px !important;
    margin: 0 !important;
    display: inline-block;
  }

  @keyframes lp-marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  @media (max-width: 1024px) {
    .lp-marquee {
      height: 40px;
    }
  }

  @media (max-width: 768px) {
    .lp-marquee {
      height: 38px;
    }
    .lp-marquee__track span,
    .lp-marquee__track p {
      letter-spacing: -0.5px !important;
    }
  }

  @media (max-width: 480px) {
    .lp-marquee {
      height: 34px;
    }
    .lp-marquee__track span,
    .lp-marquee__track p {
      padding: 0 12px !important;
      letter-spacing: -0.3px !important;
    }
  }
/* END_SECTION:lp-marquee */

/* START_SECTION:lp-reason-row (INDEX:29) */
.lp-reason {
    background: var(--lp-paper, #ffffff);
    font-family: "Inter", -apple-system, system-ui, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    padding-top: var(--lp-pad-top) !important;
    padding-bottom: var(--lp-pad-bottom) !important;
    padding-left: var(--lp-pad-x) !important;
    padding-right: var(--lp-pad-x) !important;
    box-sizing: border-box;
  }

  .lp-reason__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1440px !important;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .lp-reason--img-right .lp-reason__art-col {
    order: 2;
  }

  .lp-reason--img-right .lp-reason__copy-col {
    order: 1;
  }

  /* ---- Art Frame ---- */
  .lp-reason__art-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 588 / 571;
    overflow: visible;
  }

  /* Standard: single image fills frame */
  .lp-reason__art-frame--standard {
    overflow: hidden;
    border-radius: 8px;
  }

  .lp-reason__art-frame--standard img,
  .lp-reason__art-frame--standard svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Offset: backing card + image */
  .lp-reason__art-frame--offset {
    overflow: visible !important;
  }

  .lp-reason__offset-backing,
  .lp-reason__offset-backing:empty {
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 80% !important;
    height: 72% !important;
    border-radius: 12px !important;
    background: #98703033 !important;
    display: block !important;
    z-index: 1 !important;
  }

  .lp-reason__offset-image {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    width: 78% !important;
    height: 88% !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14) !important;
    border-radius: 4px !important;
    z-index: 2 !important;
  }

  .lp-reason__offset-image img,
  .lp-reason__offset-image svg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    max-width: none !important;
  }

  /* Grid 2x2 */
  .lp-reason__art-frame--grid_2x2 {
    overflow: hidden;
    border-radius: 8px;
  }

  .lp-reason__grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }

  .lp-reason__grid-cell {
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
  }

  .lp-reason__grid-cell img,
  .lp-reason__grid-cell svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
  }

  /* Overlap: two rotated prints */
  .lp-reason__art-frame--overlap {
    overflow: visible;
  }

  .lp-reason__overlap-img-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 58%;
    height: 80%;
    transform: rotate(-3deg);
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
    border-radius: 3px;
  }

  .lp-reason__overlap-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 62%;
    height: 68%;
    transform: rotate(2deg);
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
    border-radius: 3px;
  }

  .lp-reason__overlap-img-1 img,
  .lp-reason__overlap-img-1 svg,
  .lp-reason__overlap-img-2 img,
  .lp-reason__overlap-img-2 svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ---- Copy Column - Typography ---- */
  .lp-reason__tag {
    font-family: "Playfair", Georgia, serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    font-style: italic !important;
    line-height: 100% !important;
    letter-spacing: -0.01em !important;
    text-transform: uppercase !important;
    color: #543A1F !important;
    margin: 0 0 16px 0 !important;
    display: block;
  }

  .lp-reason__heading {
    font-family: "Playfair", Georgia, serif !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 100% !important;
    letter-spacing: -0.01em !important;
    text-transform: capitalize !important;
    color: #313131 !important;
    max-width: 390px !important;
    margin: 0 0 30px 0 !important;
  }

  .lp-reason__body,
  .lp-reason__body p {
    font-family: "Figtree", -apple-system, system-ui, sans-serif !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    font-style: normal !important;
    line-height: 150% !important;
    letter-spacing: -0.03em !important;
    color: #313131 !important;
  }

  .lp-reason__body p {
    margin: 0 0 14px 0 !important;
  }

  .lp-reason__body p:last-child {
    margin-bottom: 0 !important;
  }

  /* ---- CTA Button ---- */
  .lp-reason__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0 0 0 !important;
    padding: 15px 40px !important;
    background: #543A1F !important;
    color: #ffffff !important;
    font-family: "Figtree", -apple-system, system-ui, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 100% !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
  }

  .lp-reason__cta:hover {
    background: #6B4A28 !important;
    transform: translateY(-2px) !important;
  }

  /* ---- Responsive scaling ---- */
  @media (max-width: 1024px) {
    .lp-reason {
      padding-left: calc(var(--lp-pad-x) * 0.55) !important;
      padding-right: calc(var(--lp-pad-x) * 0.55) !important;
      padding-top: calc(var(--lp-pad-top) * 0.8) !important;
      padding-bottom: calc(var(--lp-pad-bottom) * 0.8) !important;
    }

    .lp-reason__inner {
      gap: 32px;
    }

    .lp-reason__tag {
      font-size: 26px !important;
      margin-bottom: 14px !important;
    }

    .lp-reason__heading {
      font-size: 34px !important;
      margin-bottom: 24px !important;
    }

    .lp-reason__body,
    .lp-reason__body p {
      font-size: 18px !important;
    }
  }

  @media (max-width: 768px) {
    .lp-reason__inner {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .lp-reason__art-col {
      order: 1 !important;
    }

    .lp-reason__copy-col {
      order: 2 !important;
    }

    .lp-reason__heading {
      max-width: 100% !important;
    }
  }

  @media (max-width: 640px) {
    .lp-reason {
      padding-left: 20px !important;
      padding-right: 20px !important;
      padding-top: calc(var(--lp-pad-top) * 0.65) !important;
      padding-bottom: calc(var(--lp-pad-bottom) * 0.65) !important;
    }

    .lp-reason__inner {
      gap: 20px;
    }

    .lp-reason__tag {
      font-size: 22px !important;
      margin-bottom: 12px !important;
    }

    .lp-reason__heading {
      font-size: 28px !important;
      margin-bottom: 20px !important;
    }

    .lp-reason__body,
    .lp-reason__body p {
      font-size: 16px !important;
    }

    .lp-reason__cta {
      margin-top: 24px !important;
      padding: 13px 32px !important;
      font-size: 15px !important;
    }
  }
/* END_SECTION:lp-reason-row */