/** Shopify CDN: Minification failed

Line 236:3 Unexpected "="

**/
.hc-why-section {
  background: var(--parchment);
  padding:60px;
  overflow: hidden;
  position: relative;
}

.hc-why-section::before,
.hc-why-section::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 80vw);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--amber),
    transparent
  );
  opacity: 0.45;
}
.hc-why-section::before { top: 0; }
.hc-why-section::after  { bottom: 0; }


.hc-why-container {
  max-width: 1360px;
  margin: 0 auto;
}


.hc-why-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hc-why-eyebrow {
  margin: 0 0 20px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
}

.hc-why-heading {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--midnight);
}


.hc-why-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 32px 0 0;
}

.hc-why-divider-line {
  display: block;
  width: 120px;
  height: 1px;
  background: var(--amber);
  opacity: 0.55;
}

.hc-why-divider-ornament {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hc-why-divider-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.7;
}

.hc-why-divider-diamond {
  display: block;
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--amber);
  transform: rotate(45deg);
  position: relative;
}

.hc-why-divider-diamond::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--amber);
}


.hc-why-subheading {
  margin: 30px auto 0;
  max-width: 720px;
}

.hc-why-subheading p {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--warm-stone);
}


.hc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;

  background: var(--rule);
  border: 1px solid var(--rule);
}


.hc-why-card {
  background: var(--parchment);
  transition: background 0.35s ease;
}

.hc-why-card:hover {
  background: var(--linen);
}

.hc-why-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 40px 52px;
}

.hc-why-icon-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
}

.hc-why-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(184, 154, 106, 0.10) 0%,
    transparent 70%
  );
}

.hc-why-icon {
  position: relative;
  width: 96px;
  height: 96px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.hc-why-card:hover .hc-why-icon {
  transform: scale(1.07);
}

.hc-why-card-title {
  margin: 28px 0 0;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--midnight);
}

.hc-why-card-rule {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 18px 0 20px;
}

.hc-why-card-rule span {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--amber);
  opacity: 0.6;
}

.hc-why-card-rule-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.85;
  flex-shrink: 0;
}

.hc-why-card-description {
  max-width: 300px;
}

.hc-why-card-description p {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: var(--warm-stone);
}

   RESPONSIVE
   ========================================================================== */

@media screen and (max-width: 1100px) {
  .hc-why-card-inner {
    padding: 48px 28px 44px;
  }
}

@media screen and (max-width: 900px) {
  .hc-why-section {
    padding: 96px 20px 104px;
  }

  .hc-why-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 64px;
  }

  .hc-why-divider-line {
    width: 80px;
  }

  .hc-why-card-inner {
    padding: 44px 24px 40px;
  }
}

@media screen and (max-width: 600px) {
  .hc-why-section {
    padding: 80px 16px 88px;
  }

  .hc-why-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }


  .hc-why-card-inner {
    padding: 40px 20px 36px;
  }

  .hc-why-divider-line {
    width: 56px;
  }

  .hc-why-heading {
    letter-spacing: 0.10em;
    line-height: 1.08;
  }

  .hc-why-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
  }

  .hc-why-subheading p {
    font-size: 1.2rem;
    line-height: 1.75;
  }

  .hc-why-icon {
    width: 80px;
    height: 80px;
  }

  .hc-why-icon-wrap {
    width: 108px;
    height: 108px;
  }

  .hc-why-card-description p {
    font-size: 1rem;
  }
}