/* ============================================================
   STHERB — About Us Redesign
   Scoped to .stherb-redesign-about (body class on
   template-about-redesign.php). Reuses design tokens + base
   classes (.sr-container, .sr-kicker, .sr-btn) from
   homepage-redesign.css, which is always enqueued first.
   ============================================================ */

/* ---- Hero ---- */
.sr-about-hero {
  padding: 72px 0 56px;
  text-align: center;
}

.sr-about-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.sr-about-eyebrow::before,
.sr-about-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--border);
}

.sr-about-hero .sr-container > h1 {
  margin-bottom: 18px;
}

.sr-about-hero-sub {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ---- Story / Heritage split rows ---- */
.sr-about-row {
  padding: 56px 0;
}

.sr-about-row-alt {
  padding-top: 0;
}

.sr-about-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sr-about-media {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--soft);
}

.sr-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sr-about-ph {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: #A6987F;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.sr-about-copy .sr-kicker { margin-bottom: 10px; }

.sr-about-copy h2 {
  margin-bottom: 18px;
}

.sr-about-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.sr-about-copy p:last-of-type { margin-bottom: 22px; }

.sr-about-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sr-about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.sr-about-link:hover { text-decoration: underline; }

/* ---- Pillars ---- */
.sr-about-pillars { padding: 72px 0; }

.sr-about-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.sr-about-head .sr-kicker { justify-content: center; }

.sr-about-head h2 { margin-bottom: 14px; }

.sr-about-head-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.sr-about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sr-about-pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(34, 30, 24, 0.04);
}

.sr-about-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin: 0 auto 16px;
}

.sr-about-icon svg { width: 20px; height: 20px; }

.sr-about-pillar-title {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

/* ---- Stats bar ---- */
.sr-about-statbar {
  background: var(--dark);
  border-radius: 20px;
  margin: 0 24px 72px;
  padding: 40px 24px;
}

.sr-about-statbar-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.sr-about-stat-num {
  display: block;
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: 34px;
  color: #fff;
  margin-bottom: 6px;
}

.sr-about-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Learn More Hub ---- */
.sr-about-hub { padding: 0 0 72px; }

.sr-about-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sr-about-hub-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sr-about-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(34, 30, 24, 0.08);
}

.sr-about-hub-title {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}

.sr-about-hub-desc {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---- CTA ---- */
.sr-about-cta {
  background: var(--soft);
  padding: 48px 0;
}

.sr-about-cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sr-about-cta h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.sr-about-cta p {
  color: var(--muted);
  font-size: 15px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .sr-about-row-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sr-about-row-alt .sr-about-media { order: -1; }

  .sr-about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sr-about-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sr-about-statbar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }
}

@media (max-width: 640px) {
  .sr-about-hero { padding: 48px 0 40px; }

  .sr-about-hero-sub { font-size: 15px; }

  .sr-about-row { padding: 40px 0; }

  .sr-about-pillars { padding: 48px 0; }

  .sr-about-pillars-grid,
  .sr-about-hub-grid {
    grid-template-columns: 1fr;
  }

  .sr-about-statbar {
    margin: 0 16px 48px;
    padding: 28px 20px;
  }

  .sr-about-cta-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .sr-about-cta .sr-btn { width: 100%; justify-content: center; }
}

@media (max-width: 430px) {
  .sr-about-statbar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
}
