/** Shopify CDN: Minification failed

Line 86:10 Expected identifier but found whitespace
Line 86:12 Unexpected "{"
Line 86:21 Expected ":"
Line 124:10 Expected identifier but found whitespace
Line 124:12 Unexpected "{"
Line 124:21 Expected ":"

**/
@font-face {
    font-family: "Goudy";
    src: url("{{ 'GoudyOldStyle-Roman.woff2' | asset_url }}") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Goudy";
    src: url("{{ 'GOUDOSB-Bold.woff2' | asset_url }}") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Acaslon";
    src: url("{{ 'acaslon_regular.ttf' | asset_url }}") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.announcement-bar{
    background-color: #4f453e !important;
}

.founder-story__headline p{
    margin: 0;
    padding: 0;
}

  .founder-story {
    padding: 40px 40px;
    background-color: #FCF9F5;
  }

  .founder-story__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .founder-story__image-wrapper {
    overflow: hidden;
  }

  .founder-story__image {
display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius:10px;
  }

  .founder-story__content {
    padding-right: 40px;
  }

  .founder-story__label {
    font-size: 14px;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 16px;
    font-weight: 500;
    font-family: "Acaslon";
  }

  .founder-story__headline {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: {{ section.settings.headline_color }};
    font-weight: 400;
    font-family: "Goudy";
    margin-top: 0;
  }

  .founder-story__headline em {
    font-style: italic;
    font-weight: 400;
        font-size: 60px;
            font-family: "Goudy";
  }

  .founder-story__description {
     font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-family: "Acaslon";
  }

  .founder-story__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
        font-family: "Goudy";
  }

  .founder-story__stat {
    text-align: center;
    border-top: 1px solid #cccc;
    padding-top: 12%;
        font-family: "Goudy";
  }

  .founder-story__stat-number {
    font-size: 24px;
    font-weight: 400;
    color: {{ section.settings.stat_number_color }};
    margin-bottom: 8px;
        font-family: "Goudy";
  }

  .founder-story__stat-label {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
    font-family: "Acaslon";
    color: #000;
  }

  .founder-story__cta {
text-decoration: none;
    display: inline-block;
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
    font-weight: 600;
    font-family: "Acaslon";
        font-size: 16px;
  }

  .founder-story__cta:hover {
    opacity: 0.7;
  }

  @media (max-width: 768px) {
    .founder-story {
      padding: 40px 20px;
    }

    .founder-story__wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .founder-story__content {
      padding-right: 0;
    }

    .founder-story__headline {
      font-size: 28px;
    }

    .founder-story__stats {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
    }

    .founder-story__stat {
      text-align: left;
    }
  }


  