/* =============================================
   VERTEX WELLNESS SUPPLY — ABOUT PAGE STYLES
   ============================================= */

/* ─── Hero ─── */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, #1e2b3a 100%);
  padding: 88px 0 80px;
  overflow: hidden;
  color: var(--white);
}
.about-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ah-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.ah-shape-1 { width: 520px; height: 520px; background: var(--green-400); top: -180px; right: -120px; }
.ah-shape-2 { width: 280px; height: 280px; background: var(--purple-400); bottom: -60px; left: -80px; }
.ah-shape-3 { width: 160px; height: 160px; background: var(--blue-400); top: 40px; left: 40%; }

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.about-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-300);
  margin-bottom: 12px;
}
.about-hero-inner h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.about-hero-inner h1 em {
  font-style: normal;
  color: var(--green-300);
  font-family: 'Playfair Display', serif;
}
.about-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 28px;
}
.about-hero-tagline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.about-hero-tagline span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-300);
  letter-spacing: 0.02em;
}
.about-hero-tagline span::after {
  content: '·';
  margin-left: 20px;
  color: rgba(255,255,255,.3);
}
.about-hero-tagline span:last-child::after { display: none; }

/* ─── Who We Are ─── */
.about-who {
  padding: 88px 0;
  background: var(--white);
}
.about-who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-who-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-who-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-who-text .btn { margin-top: 12px; }

.about-who-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aw-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,.06);
}
.aw-card--green { background: var(--green-50); border-color: rgba(46,125,69,.12); }
.aw-card--purple { background: rgba(107,79,163,.05); border-color: rgba(107,79,163,.12); }
.aw-card--blue { background: rgba(33,113,186,.05); border-color: rgba(33,113,186,.12); }

.aw-card-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.aw-card-label { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.aw-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ─── What We Carry ─── */
.about-products {
  padding: 88px 0;
  background: var(--cream);
}
.section-center { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 12px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 52px;
}
.ab-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}
.ab-icon { font-size: 1.1rem; }

.about-product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.apc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.apc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.apc-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--green-50);
}
.apc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.apc-card:hover .apc-img-wrap img { transform: scale(1.04); }

.apc-info { padding: 24px; }
.apc-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-600);
  margin-bottom: 6px;
}
.apc-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.apc-info p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }

.btn-outline-sm {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid var(--green-600);
  border-radius: var(--radius-sm);
  color: var(--green-600);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-sm:hover { background: var(--green-600); color: var(--white); }

/* ─── Built for Real Life ─── */
.about-reallife {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--green-900), #1e2b3a);
  color: var(--white);
}
.about-reallife-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.arl-text .section-eyebrow { margin-bottom: 12px; }
.arl-text h2 { font-size: clamp(1.6rem, 3.5vw, 2rem); line-height: 1.25; color: var(--white); margin-bottom: 20px; }
.arl-text p { font-size: 0.95rem; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 16px; }

.arl-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.arl-stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--green-300);
  line-height: 1;
  margin-bottom: 10px;
}
.arl-stat-number span { font-size: 2.5rem; }
.arl-stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 28px;
}

.arl-strip-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: start;
}
.arl-vs-divider {
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255,255,255,.4);
  padding-top: 28px;
  text-align: center;
}
.arl-vs-item {
  display: flex;
  gap: 10px;
}
.arl-vs-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.arl-vs-item strong { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 6px; }
.arl-vs-bad strong { color: rgba(255,255,255,.6); }
.arl-vs-good strong { color: var(--green-300); }
.arl-vs-item ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 4px; }
.arl-vs-item ul li { font-size: 0.8rem; color: rgba(255,255,255,.6); }
.arl-vs-good ul li { color: rgba(255,255,255,.85); }
.arl-vs-good ul li::before { content: '✓ '; color: var(--green-400); font-weight: 700; }
.arl-vs-bad ul li::before { content: '✕ '; color: rgba(255,100,100,.7); font-weight: 700; }

/* ─── Our Values ─── */
.about-values {
  padding: 88px 0;
  background: var(--white);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.av-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.av-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.av-icon { font-size: 2rem; margin-bottom: 14px; }
.av-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.av-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ─── Wholesale CTA ─── */
.about-wholesale {
  padding: 88px 0;
  background: var(--cream);
}
.aw-cta-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}
.aw-cta-text h2 { font-size: clamp(1.6rem, 3.5vw, 2rem); margin-bottom: 16px; }
.aw-cta-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.aw-cta-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.aw-cta-icons span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,0,0,.08);
}

.aw-cta-box {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  color: var(--white);
}
.aw-cta-box-icon { font-size: 2.4rem; margin-bottom: 12px; }
.aw-cta-box h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.aw-cta-box p { font-size: 0.88rem; color: rgba(255,255,255,.78); line-height: 1.65; margin-bottom: 20px; }
.aw-cta-box .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.aw-cta-note { font-size: 0.78rem; color: rgba(255,255,255,.55); }

/* ─── Disclaimer ─── */
.about-disclaimer {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 20px 0;
}
.about-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .aw-cta-inner { grid-template-columns: 1fr; }
  .aw-cta-box { max-width: 420px; }
}
@media (max-width: 900px) {
  .about-who-inner,
  .about-reallife-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-product-cards { grid-template-columns: 1fr; max-width: 420px; }
  .arl-stat { padding: 24px; }
}
@media (max-width: 600px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .about-hero-tagline { gap: 10px; flex-direction: column; }
  .about-hero-tagline span::after { display: none; }
  .arl-strip-vs { grid-template-columns: 1fr; }
  .arl-vs-divider { display: none; }
}
