/** Shopify CDN: Minification failed

Line 26:18 Unexpected "{"
Line 26:27 Expected ":"
Line 26:34 Unexpected "{"
Line 27:19 Expected identifier but found whitespace
Line 27:21 Unexpected "{"
Line 27:30 Expected ":"
Line 33:18 Unexpected "{"
Line 33:27 Expected ":"
Line 43:18 Unexpected "{"
Line 43:27 Expected ":"
... and 55 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:hhc-about-story-section (INDEX:36) */
.story-section{
  max-width: 90%;
  margin: 0 auto;
      background: #F4F0EC !important;
}
#shopify-section-{{ section.id }} {
  background-color: {{ section.settings.background_color }};
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

#shopify-section-{{ section.id }} .story-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
      background: #F4F0EC;
}

#shopify-section-{{ section.id }} .story-section__image-wrap {
  display: flex;
}

#shopify-section-{{ section.id }} .story-section__image-wrap--left {
  justify-content: flex-end;
  align-items: flex-end;
}

#shopify-section-{{ section.id }} .story-section__image-wrap--right {
  justify-content: flex-start;
  align-items: flex-start;
}

#shopify-section-{{ section.id }} .story-section__polaroid {
  background: #ffffff;
  padding: 10px 10px 32px 10px;
  box-shadow: 4px 5px 16px rgba(0,0,0,0.18);
  position: relative;
}

#shopify-section-{{ section.id }} .story-section__polaroid--left {
  transform: rotate(-2.5deg);
}

#shopify-section-{{ section.id }} .story-section__polaroid--right {
  transform: rotate(2deg);
}

#shopify-section-{{ section.id }} .story-section__polaroid::before,
#shopify-section-{{ section.id }} .story-section__polaroid::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 40px;
  height: 20px;
  background: rgba(185, 165, 120, 0.5);
  border-radius: 2px;
}

#shopify-section-{{ section.id }} .story-section__polaroid--left::before {
  left: 16px;
  transform: rotate(-3deg);
}

#shopify-section-{{ section.id }} .story-section__polaroid--left::after {
  right: 16px;
  transform: rotate(3deg);
}

#shopify-section-{{ section.id }} .story-section__polaroid--right::before {
  left: 16px;
  transform: rotate(-3deg);
}

#shopify-section-{{ section.id }} .story-section__polaroid--right::after {
  right: 16px;
  transform: rotate(3deg);
}

#shopify-section-{{ section.id }} .story-section__img {
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

#shopify-section-{{ section.id }} .story-section__img--placeholder {
  aspect-ratio: 3/4;
  background: #e0d9ce !important;
}

#shopify-section-{{ section.id }} .story-section__content {
  text-align: start;
  padding: 20px 20px;
}

#shopify-section-{{ section.id }} .story-section__heading {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #BB4C4C;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

#shopify-section-{{ section.id }} .story-section__body {
  font-size:20px;
  color: #1a1a2e;

}

#shopify-section-{{ section.id }} .story-section__body p {
  margin: 0 0 16px 0;
}

#shopify-section-{{ section.id }} .story-section__body p:last-child {
  margin-bottom: 0;
}

#shopify-section-{{ section.id }} .story-section__body strong {
  font-weight: 700;
  color: #1a1a2e;
}

@media screen and (max-width: 749px) {
  #shopify-section-{{ section.id }} {
    padding: 40px 20px;
  }

  #shopify-section-{{ section.id }} .story-section__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #shopify-section-{{ section.id }} .story-section__image-wrap--left {
    justify-content: center;
    align-items: center;
  }

  #shopify-section-{{ section.id }} .story-section__image-wrap--right {
    justify-content: center;
    align-items: center;
    order: 3;
  }

  #shopify-section-{{ section.id }} .story-section__content {
    order: 2;
  }

  #shopify-section-{{ section.id }} .story-section__img {
    max-width: 220px;
  }
}
/* END_SECTION:hhc-about-story-section */

/* START_SECTION:hhc-about-us-banner (INDEX:37) */
.about-us-banner {
   max-width: 90%;
   margin: 0 auto;
    overflow: hidden;
       
  }

  .about-us-banner__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
   background-color: #F4F0EC;
    min-height: {{ section.settings.section_height }}px;
  }

  .about-us-banner__content {

    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .about-us-banner__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #BB4C4C;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .about-us-banner__heading {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.2;
    color: #112B4F;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }

  .about-us-banner__divider {
    width: 50px;
    height: 3px;
    background-color: #BB4C4C;
    margin: 16px 0 24px 0;
    border: none;
  }

  .about-us-banner__text {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: #333333;
    margin-bottom: 28px;
    max-width: 90%;
  }

  .about-us-banner__button {
    background-color: #112B4F;
    color: #ffffff;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 0;
    display: inline-block;
    transition: background-color 0.3s ease;
  }

  .about-us-banner__button:hover {
    background-color: #112B4F;
  }

  .about-us-banner__image-wrapper {
    overflow: hidden;
    background-color: #F4F0EC;
  }

  .about-us-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Mobile Responsive */
  @media (max-width: 749px) {
    .about-us-banner__inner {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .about-us-banner__content {
      padding: 40px 24px;
      min-height: auto;
      order: 1;
    }

    .about-us-banner__image-wrapper {
      height: 300px;
      order: 2;
    }

    .about-us-banner__heading {
      font-size: clamp(24px, 6vw, 36px);
    }

    .about-us-banner__text {
      max-width: 100%;
    }
  }
/* END_SECTION:hhc-about-us-banner */