/* About Us (/pages/about-us) — premium redesign. Reuses the shared
   gold/charcoal/ivory tokens from shop-premium-tokens.css (same palette as
   the other redesigned pages) so this stays visually one brand rather than
   the old plain Shopify-extract layout. Supersedes the older, separately-
   maintained about-us-premium-redesign.css (retired). */

.abt {
  background: var(--pdp-ivory, #faf6ef);
  padding-bottom: 6rem;
}

/* --- Hero --- */

.abt__hero {
  text-align: center;
  padding: 5.5rem 1.5rem 3.5rem;
}

.abt__eyebrow {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
  color: var(--pdp-gold, #b8860b);
  margin-bottom: 1.4rem;
}

.abt__title {
  margin: 0;
  font-family: var(--font-heading-family, serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  color: var(--pdp-ink, #2b241d);
}

.abt__rule {
  display: block;
  width: 6.4rem;
  height: 2px;
  margin: 2rem auto 0;
  background: linear-gradient(90deg, transparent, var(--pdp-gold, #b8860b), transparent);
}

.abt__wrap {
  max-width: 84rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.abt__section {
  background: var(--pdp-card, #fff);
  border: 1px solid var(--pdp-line, #e8dcc8);
  border-radius: var(--pdp-radius-lg, 16px);
  box-shadow: var(--pdp-shadow-sm, 0 2px 10px rgba(43, 36, 29, 0.06));
  padding: 3rem clamp(1.6rem, 4vw, 3.6rem);
}

.abt__heading {
  margin: 0 0 1.6rem;
  font-family: var(--font-heading-family, serif);
  font-weight: 400;
  font-size: 2.1rem;
  color: var(--pdp-ink, #2b241d);
}

/* --- Generic rich-text prose --- */

.abt__prose {
  color: var(--pdp-ink-soft, rgba(43, 36, 29, 0.66));
  font-size: 1.55rem;
  line-height: 1.75;
}

.abt__prose p {
  margin: 0 0 1.2rem;
}

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

.abt__prose b,
.abt__prose strong {
  color: var(--pdp-ink, #2b241d);
  font-weight: 700;
}

.abt__prose a {
  color: var(--pdp-gold-dark, #8a6508);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

/* --- "What We Stand For" impact section --- */

.abt__impact {
  text-align: center;
}

.abt__impact .abt__heading {
  font-style: italic;
}

.abt__impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.4rem;
  text-align: left;
}

.abt__impact-item {
  background: var(--pdp-ivory, #faf6ef);
  border: 1px solid var(--pdp-line, #e8dcc8);
  border-radius: var(--pdp-radius-md, 10px);
  padding: 2.4rem 2rem;
  transition: box-shadow 0.25s var(--pdp-ease, ease), transform 0.25s var(--pdp-ease, ease), border-color 0.25s var(--pdp-ease, ease);
}

.abt__impact-item:hover {
  border-color: var(--pdp-gold, #b8860b);
  box-shadow: var(--pdp-shadow-md, 0 12px 32px -16px rgba(43, 36, 29, 0.28));
  transform: translateY(-3px);
}

.abt__impact-icon {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--pdp-gold-rgb, 184, 134, 11), 0.1);
  color: var(--pdp-gold-dark, #8a6508);
  margin-bottom: 1.4rem;
}

.abt__impact-icon svg {
  width: 1.9rem;
  height: 1.9rem;
}

.abt__impact-item h3 {
  margin: 0 0 0.7rem;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--pdp-ink, #2b241d);
}

.abt__impact-item .abt__prose {
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (max-width: 899px) {
  .abt__impact-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 640px) {
  .abt__hero {
    padding: 3.6rem 1.2rem 2.6rem;
  }

  .abt__section {
    padding: 2.2rem 1.6rem;
  }
}
