/* ============================================================
   ABOUT.CSS — Lion King Naturals
   Earthy organic aesthetic, aligned with style.css
   ============================================================ */

/* ── Hero ── */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, #2d5a1b 0%, #3d7a1a 45%, #573e19 100%);
  overflow: hidden;
  padding: 90px 40px 80px;
  text-align: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Decorative leaf shapes */
.about-hero::after {
  content: '🌿';
  position: absolute;
  font-size: 220px;
  opacity: 0.07;
  right: -30px;
  top: -20px;
  pointer-events: none;
  line-height: 1;
  transform: rotate(-20deg);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.about-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}

.about-hero-title {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-hero-title em {
  font-style: normal;
  color: #f0e8d0;
  position: relative;
}

.about-hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(240,232,208,0.4);
  border-radius: 2px;
}

.about-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Stats strip ── */
.about-stats {
  background: #fdf9f2;
  border-bottom: 1px solid #d8cbb6;
}

.about-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid #d8cbb6;
  transition: background .2s;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover { background: #f5efe4; }

.stat-num {
  font-size: 38px;
  font-weight: 800;
  color: #2d5a1b;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-unit {
  font-size: 18px;
  font-weight: 800;
  color: #3d7a1a;
}

.stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Section wrapper ── */
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 40px;
}

.about-section-sm {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 70px;
}

/* ── Section label ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #2d5a1b;
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #2d5a1b;
  border-radius: 2px;
}

.section-title {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #573e19;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-body {
  font-size: 15px;
  color: #7a5c30;
  line-height: 1.8;
}

/* ── Story section — two col ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-image-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  background: #e0d5c5;
}

/* Decorative sticker on image */
.story-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 100px;
  height: 100px;
  background: #2d5a1b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(45,90,27,.35);
  border: 4px solid #fdf9f2;
}

.story-badge-num {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.story-badge-text {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
  padding: 0 6px;
}

.story-text { display: flex; flex-direction: column; gap: 16px; }

.story-quote {
  border-left: 3px solid #2d5a1b;
  padding-left: 18px;
  font-size: 16px;
  font-style: italic;
  color: #573e19;
  line-height: 1.7;
  margin: 8px 0;
}

/* ── Values grid ── */
.values-bg {
  background: #f5efe4;
  border-top: 1px solid #d8cbb6;
  border-bottom: 1px solid #d8cbb6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: #fdf9f2;
  border: 1px solid #d8cbb6;
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}

.value-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.value-title {
  font-size: 16px;
  font-weight: 800;
  color: #573e19;
  margin-bottom: 8px;
}

.value-body {
  font-size: 13.5px;
  color: #888;
  line-height: 1.7;
}

/* ── Process — horizontal steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  position: relative;
}

/* connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: #d8cbb6;
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.process-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fdf9f2;
  border: 2px solid #d8cbb6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: background .2s, border-color .2s, transform .2s;
}

.process-step:hover .process-dot {
  background: #2d5a1b;
  border-color: #2d5a1b;
  transform: scale(1.1);
}

.process-step-num {
  position: absolute;
  top: -8px;
  right: calc(50% - 36px);
  width: 20px;
  height: 20px;
  background: #573e19;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #573e19;
  margin-bottom: 6px;
}

.process-step-body {
  font-size: 12.5px;
  color: #888;
  line-height: 1.6;
}

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  background: #fdf9f2;
  border: 1px solid #d8cbb6;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.team-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.team-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e8dfc8, #d8c8a8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 18px 20px 20px;
}

.team-name {
  font-size: 15px;
  font-weight: 800;
  color: #573e19;
  margin-bottom: 3px;
}

.team-role {
  font-size: 12px;
  font-weight: 700;
  color: #2d5a1b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13px;
  color: #888;
  line-height: 1.65;
}

/* ── Certifications ── */
.cert-strip {
  background: #fdf9f2;
  border-top: 1px solid #d8cbb6;
  border-bottom: 1px solid #d8cbb6;
  padding: 40px;
}

/* .cert-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
} */

.cert-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr; /* default: <528px */
}

/* >528px → 2 cards */
@media (min-width: 528px) {
  .cert-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* >930px → 3 cards */
@media (min-width: 930px) {
  .cert-strip-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}


.cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5efe4;
  border: 1.5px solid #d8cbb6;
  border-radius: 12px;
  padding: 14px 20px;
  transition: border-color .2s, box-shadow .2s;

  width: 100%;
  justify-content: flex-start;
}

.cert-badge:hover {
  border-color: #2d5a1b;
  box-shadow: 0 4px 16px rgba(45,90,27,.1);
}

.cert-icon { font-size: 28px; }

.cert-info-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #888;
}

.cert-info-name {
  font-size: 13.5px;
  font-weight: 800;
  color: #573e19;
}

/* ── CTA banner ── */
.about-cta {
  background: linear-gradient(135deg, #2d5a1b 0%, #3d7a1a 100%);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.about-cta-inner { position: relative; z-index: 1; }

.about-cta h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.about-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.about-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  background: #fff;
  color: #2d5a1b;
  border: none;
  border-radius: 10px;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.btn-cta-primary:hover { background: #f0f8e8; transform: translateY(-2px); }

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 10px;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .15s;
}

.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid #d8cbb6; }
  .stat-item:nth-child(4) { border-top: 1px solid #d8cbb6; border-right: none; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .about-hero { padding: 60px 20px 56px; }
  .about-section, .about-section-sm { padding-left: 20px; padding-right: 20px; }
  .about-stats-inner { padding: 0 20px; }

  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-badge { right: 12px; bottom: -14px; width: 82px; height: 82px; }
  .story-badge-num { font-size: 18px; }

  .values-grid  { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }

  .cert-strip { padding: 30px 20px; }
  .about-cta  { padding: 50px 20px; }
}

@media (max-width: 480px) {
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .about-cta-btns { flex-direction: column; align-items: center; }
  .btn-cta-primary, .btn-cta-outline { width: 100%; justify-content: center; }
}