/* 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;
}

/* Showcase — single dominant editorial panel */
.about-mosaic { display:flex; flex-direction:column; }
.mosaic-main {
  border-radius:24px; overflow:hidden;
  aspect-ratio:4/5;
  box-shadow:0 16px 48px rgba(45,27,51,.14);
}
.mosaic-main img { width:100%;height:100%;object-fit:cover; }
/* Ingredient composition image — preserves full top/bottom labels.
   Portrait artwork on white inside the portrait 4/5 frame.
   Existing radius + shadow on .mosaic-main stay the editorial frame. */
.mosaic-main img.mosaic-main-ingredients {
  object-fit: contain;
  background: #fff;
  padding: 18px;
}

/* 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;
}

/* ══════════════════════════════════════════════
   ABOUT EDITORIAL TIER 2
   (Quality & Craft, Flavor & Innovation)
   Sits inside .about-section, below .about-wrap.
══════════════════════════════════════════════ */
.about-editorial {
  max-width: 720px;
  margin: 90px auto 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.about-chapter { text-align: center; }
.about-mini-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.about-chapter p {
  font-size: 16px; color: #4a3057;
  line-height: 1.85; margin-bottom: 14px;
}
.about-chapter p:last-of-type { margin-bottom: 0; }
.about-divider {
  width: 60px; height: 1px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.about-tag-row {
  margin-top: 22px;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 8px;
}

/* ══════════════════════════════════════════════
   PRODUCT FAMILY SHOWCASE
   Editorial bridge between Flavor & Innovation and Values.
   Sits inside .about-section as a third tier — same band,
   visually lighter than the hero/story panels above.
══════════════════════════════════════════════ */
.product-showcase {
  max-width: 960px;
  margin: 90px auto 0;
  text-align: center;
}
.product-showcase-head { margin-bottom: 36px; }
.ps-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.ps-title {
  font-family: var(--FD); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  color: #140820;
  line-height: 1.25;
}
.product-showcase-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 42px rgba(45,27,51,.10);
  padding: 24px;
}
.product-showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ══════════════════════════════════════════════
   STATS LEAD CAPTION
   Sits above .stats-wrap on the dark band.
══════════════════════════════════════════════ */
.stats-lead {
  max-width: 720px;
  margin: 0 auto 56px;
  font-size: 15.5px; line-height: 1.8;
  color: rgba(255,255,255,.72);
  text-align: center;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width:800px) {
  .about-wrap { grid-template-columns:1fr; gap:28px; }
  .mosaic-main {
    aspect-ratio: 1/1;
    width: 72%;
    max-width: 340px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(45,27,51,.10);
  }
  .page-hero { padding:100px 20px 60px; }
  .about-section { padding: 48px 20px 60px; }
  .values-section { padding:60px 20px; }
  .stats-section { padding:60px 20px; }
  .about-editorial { margin-top: 56px; gap: 40px; }
  .about-chapter p { font-size: 15px; line-height: 1.78; }
  .product-showcase { margin-top: 56px; }
  .product-showcase-head { margin-bottom: 28px; }
  .product-showcase-frame { padding: 16px; border-radius: 18px; }
  .stats-lead { font-size: 14.5px; margin-bottom: 40px; }
}
