/* Fruity Fresh — About Page Stylesheet */
/* Last updated: 2026-05-13 */
/* Active nav link + .page-hero block now live in base.css */

/* ══════════════════════════════════════════════
   ABOUT STORY SECTION
══════════════════════════════════════════════ */
.about-section {
  padding: 90px clamp(20px,5vw,64px);
  background: linear-gradient(160deg,#fff8fb 0%,#f8ffff 100%);
}
.about-wrap {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:70px; align-items:center;
}

/* Mosaic */
.about-mosaic { display:flex; flex-direction:column; gap:14px; }
.mosaic-main {
  border-radius:24px; overflow:hidden;
  aspect-ratio:4/3;
  box-shadow:0 16px 48px rgba(45,27,51,.14);
}
.mosaic-main img { width:100%;height:100%;object-fit:cover; }
.mosaic-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.mosaic-item {
  border-radius:18px; overflow:hidden;
  aspect-ratio:1;
  box-shadow:0 8px 24px rgba(45,27,51,.1);
}
.mosaic-item img { width:100%;height:100%;object-fit:cover; }

/* Story text */
.about-label {
  font-size:12px; font-weight:700; letter-spacing:3px;
  text-transform:uppercase; color:var(--accent); margin-bottom:14px;
}
.about-title {
  font-family:var(--FD); font-weight:700;
  font-size:clamp(28px,3.5vw,48px);
  color:#140820; line-height:1.2; margin-bottom:24px;
}
.about-text p {
  font-size:15.5px; color:#6B4D7A;
  line-height:1.8; margin-bottom:16px;
}
.about-cta-btn {
  display:inline-flex; align-items:center; gap:9px;
  margin-top:12px;
  background:linear-gradient(135deg,var(--accent),var(--accent-dk));
  color:#fff; font-weight:700; font-size:15px;
  padding:14px 30px; border-radius:999px;
  box-shadow:0 10px 28px rgba(255,107,157,.38);
  transition:transform .22s,box-shadow .22s;
}
.about-cta-btn:hover {
  transform:translateY(-3px);
  box-shadow:0 16px 36px rgba(255,107,157,.5);
}

/* ══════════════════════════════════════════════
   VALUES SECTION
══════════════════════════════════════════════ */
.values-section {
  padding:90px clamp(20px,5vw,64px);
  background:#fff;
}
.values-wrap { max-width:1200px; margin:0 auto; }
.values-head { text-align:center; margin-bottom:56px; }
.val-label {
  font-size:12px; font-weight:700; letter-spacing:3px;
  text-transform:uppercase; color:var(--accent); margin-bottom:12px;
}
.val-title {
  font-family:var(--FD); font-weight:700;
  font-size:clamp(28px,4vw,44px); color:#140820;
}
.values-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}
.value-card {
  background:#fff; border-radius:26px; padding:36px 28px;
  border-top:4px solid transparent;
  box-shadow:0 6px 26px rgba(45,27,51,.07);
  text-align:center;
  transition:transform .3s,box-shadow .3s;
}
.value-card:hover {
  transform:translateY(-8px);
  box-shadow:0 22px 56px rgba(45,27,51,.12);
}
.value-icon {
  width:72px; height:72px; border-radius:22px;
  display:flex; align-items:center; justify-content:center;
  font-size:34px; margin:0 auto 22px;
}
.value-card h3 {
  font-family:var(--FD); font-size:20px; font-weight:700;
  color:#140820; margin-bottom:12px;
}
.value-card p {
  font-size:14px; color:#6B4D7A; line-height:1.7;
}

/* ══════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════ */
.stats-section {
  padding:80px clamp(20px,5vw,64px);
  background:linear-gradient(135deg,#140820 0%,#2d0a4e 100%);
}
.stats-wrap {
  max-width:800px; margin:0 auto;
  display:flex; justify-content:center;
  gap:clamp(40px,8vw,100px); flex-wrap:wrap;
  text-align:center;
}
.stat-item {}
.stat-num {
  font-family:var(--FD); font-size:clamp(48px,7vw,80px);
  font-weight:700; color:var(--accent); line-height:1;
  margin-bottom:8px;
}
.stat-lbl {
  font-size:14px; color:rgba(255,255,255,.6);
  font-weight:600; text-transform:uppercase; letter-spacing:2px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width:800px) {
  .about-wrap { grid-template-columns:1fr; gap:40px; }
  .mosaic-grid { grid-template-columns:1fr 1fr; }
  .page-hero { padding:100px 20px 60px; }
  .about-section { padding:60px 20px; }
  .values-section { padding:60px 20px; }
  .stats-section { padding:60px 20px; }
}
