/** Shopify CDN: Minification failed

Line 281:1 Expected "}" to go with "{"

**/
/* ============================================================
   HOP — OUR STORY PAGE SECTION
   section-hop-our-story.css
   ============================================================ */

/* ── Variables (mirrors base.css design system) ── */
.hop-our-story {
  --clr-bg: #0a0a0a;
  --clr-orange: #ff6b1a;
  --clr-orange-hover: #e85d10;
  --clr-white: #ffffff;
  --clr-muted: rgba(255, 255, 255, 0.62);
  --clr-border: rgba(255, 255, 255, 0.06);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
  --panel-gap: 6rem;
  --col-gap: 5vw;
}

/* ── Wrapper ── */
.hop-our-story {
  background: var(--clr-bg);
  color: var(--clr-white);
  padding: 6rem 0 4rem;
}

/* ── Panels ── */
.hop-our-story__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto var(--panel-gap);
  padding: 0 4rem;
}

.hop-our-story__panel--image-left .hop-our-story__image-col {
  order: -1;
}

/* ── Text column ── */
.hop-our-story__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 1.25rem;
}

.hop-our-story__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--clr-white);
  margin: 0 0 2rem;
}

.hop-our-story__body {
  font-family: var(--font-body);
  font-size: 2rem;
  line-height: 1.85;
  color: var(--clr-muted);
}

.hop-our-story__body p {
  margin: 0 0 1.25rem;
}

.hop-our-story__body p:last-child {
  margin-bottom: 0;
}

.hop-our-story__body--panel2 {
  margin-bottom: 2.5rem;
}

/* ── CTA button ── */
.hop-our-story__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-white);
  border: 1px solid var(--clr-orange);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.hop-our-story__cta:hover {
  background: var(--clr-orange);
  color: var(--clr-bg);
}

/* ── Image column ── */
.hop-our-story__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.03);
}

.hop-our-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.hop-our-story__image-wrap:hover .hop-our-story__img {
  transform: scale(1.03);
}

/* Subtle orange corner accent */
.hop-our-story__image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 60px;
  background: var(--clr-orange);
  z-index: 2;
}

.hop-our-story__image-wrap--placeholder svg {
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

/* ── Pull quote ── */
.hop-our-story__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--clr-orange);
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--clr-border);
  line-height: 1.4;
}

.hop-our-story__quote-mark {
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -0.2em;
}

/* ── Values strip ── */
.hop-our-story__values {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.hop-our-story__value {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2.5rem 1rem;
  border-right: 1px solid var(--clr-border);
  text-align: center;
}

.hop-our-story__value:last-child {
  border-right: none;
}

.hop-our-story__value-icon {
  font-size: 1.4rem;
  color: var(--clr-orange);
  display: block;
}

.hop-our-story__value-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin: 0;
}

/* ── Responsive ── */
@media screen and (max-width: 1024px) {
  .hop-our-story__panel {
    padding: 0 2.5rem;
    gap: 3rem;
  }
}

@media screen and (max-width: 749px) {
  .hop-our-story {
    padding: 4rem 0 2rem;
  }

  .hop-our-story__panel {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    margin-bottom: 3.5rem;
    gap: 2rem;
  }

  /* On mobile: always show text first, image second */
  .hop-our-story__panel--image-left {
    direction: ltr;
  }

  .hop-our-story__panel--image-left .hop-our-story__image-col {
    order: 2;
  }

  .hop-our-story__panel--image-left .hop-our-story__text-col {
    order: 1;
  }

  .hop-our-story__image-wrap {
    aspect-ratio: 3 / 2;
  }

  .hop-our-story__values {
    flex-wrap: wrap;
    padding: 0 1.5rem;
  }

  .hop-our-story__value {
    flex: 1 1 calc(50% - 1px);
    padding: 1.75rem 0.5rem;
  }

  .hop-our-story__value:nth-child(2) {
    border-right: none;.hop-our-story__body {
  }

  .hop-our-story__value:nth-child(3),
  .hop-our-story__value:nth-child(4) {
    border-top: 1px solid var(--clr-border);
  }
}
.hop-our-story__accent {
  color: var(--clr-orange);
}

@media screen and (max-width: 749px) {
  .hop-our-story__body {
    font-size: 1.3rem;
  }

  .hop-our-story__heading {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
    .hop-reviews {
    display: none;
  }
}