/* =============================================================
   ANITA'S HOME KITCHEN — about.css
   ============================================================= */

/* =============================================================
   ABOUT HERO
   ============================================================= */
.about-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h-desk);
}

.about-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../assets/images/menu/egusi-soup.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.about-hero__bg.loaded { transform: scale(1); }

.about-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,25,16,0.62) 0%, rgba(10,25,16,0.72) 60%, rgba(10,25,16,0.88) 100%);
}



/* Decorative rings */
.about-hero__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: ringFloat 6s ease-in-out infinite;
}
.about-hero__ring--1 { width: 500px; height: 500px; top: -140px; right: -140px; border: 1.5px solid rgba(200,80,42,0.12); animation-delay:0s; }
.about-hero__ring--2 { width: 300px; height: 300px; top: -40px; right: -40px; border: 1px solid rgba(255,255,255,0.05); animation-delay:.9s; }
.about-hero__ring--3 { width: 200px; height: 200px; bottom: 80px; left: -60px; border: 1.5px solid rgba(200,80,42,0.08); animation-delay:1.8s; }
@keyframes ringFloat { 0%,100%{transform:scale(1) rotate(0deg)} 50%{transform:scale(1.03) rotate(3deg)} }



.about-hero__content {
  position: relative; z-index: 3;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 60px 5% 110px;
  text-align: center;
}

.about-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  opacity: 0; transform: translateY(16px);
  animation: abHeroUp 0.8s 0.2s var(--ease) forwards;
}
.eyebrow-dot-accent {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--clr-accent); flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:.7} }

.about-hero__heading {
  font-family: var(--ff-display);
  font-size: clamp(34px, 5.5vw, 72px);
  font-weight: 700; line-height: 1.1; letter-spacing: -1px;
  color: var(--clr-white);
  margin-bottom: 24px;
  opacity: 0; transform: translateY(22px);
  animation: abHeroUp 0.88s 0.38s var(--ease) forwards;
}
.about-hero__heading em { font-style: italic; color: rgba(255,255,255,0.7); }

.about-hero__sub {
  font-size: clamp(15px, 2vw, 18px); font-weight: 300;
  color: rgba(255,255,255,0.72); line-height: 1.75;
  max-width: 560px; margin: 0 auto 40px;
  opacity: 0; transform: translateY(18px);
  animation: abHeroUp 0.8s 0.56s var(--ease) forwards;
}
.ab-br { display: block; }

.about-hero__ctas {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(14px);
  animation: abHeroUp 0.8s 0.74s var(--ease) forwards;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 600;
  background: var(--clr-accent); color: var(--clr-white);
  box-shadow: 0 8px 24px rgba(200,80,42,0.35);
  transition: background .25s, transform .2s, box-shadow .2s;
}
.hero-pill svg { fill: currentColor; }
.hero-pill:hover { background: var(--clr-accent-warm); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,80,42,0.45); }
.hero-pill--outline {
  background: rgba(255,255,255,0.1);
  box-shadow: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.hero-pill--outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); box-shadow:none; }

.about-hero__wave {
  position: absolute; bottom: -1px; left: 0;
  width: 100%; z-index: 4; line-height: 0; pointer-events: none;
}
.about-hero__wave svg { display: block; width: 100%; height: 72px; }



@keyframes abHeroUp { to { opacity:1; transform:translateY(0); } }

/* =============================================================
   VALUES STRIP
   ============================================================= */
.values-strip {
  background: var(--clr-cream);
  padding: 0 0 0;
}
.values-grid {
  display: flex; align-items: stretch;
  background: var(--clr-white);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 32px rgba(27,61,47,0.08);
  overflow: hidden;
}
.value-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 32px 24px; gap: 10px;
}
.value-divider {
  width: 1px; background: rgba(27,61,47,0.08); align-self: stretch; flex-shrink: 0;
}
.value-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--clr-light-green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.value-icon svg { fill: var(--clr-mid-green); }
.value-item strong { font-size: 15px; font-weight: 600; color: var(--clr-text); }
.value-item span { font-size: 12.5px; color: var(--clr-muted); line-height: 1.5; }

/* =============================================================
   STORY SECTION
   ============================================================= */
.story-section {
  background: var(--clr-cream);
  padding: 100px 0;
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

/* Image collage */
.story-images { position: relative; }
.story-img {
  border-radius: 18px;
  background-size: cover; background-position: center;
  background-color: var(--clr-light-green);
  transition: transform 0.45s var(--ease);
}
.story-img:hover { transform: scale(1.02); }
.story-img--main { height: 420px; width: 100%; }
.story-img--sm {
  position: absolute; width: 46%; height: 190px;
  box-shadow: 0 12px 40px rgba(27,61,47,0.18);
  border: 4px solid var(--clr-white);
}
.story-img--top { top: -32px; right: -28px; }
.story-img--bot { bottom: -32px; right: -28px; }

.story-accent-card {
  position: absolute; bottom: 28px; left: -20px;
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: 50px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(200,80,42,0.35);
  z-index: 2;
}
.story-accent-card svg { fill: currentColor; flex-shrink: 0; }
.story-accent-card strong { display: block; font-size: 14px; font-weight: 700; }
.story-accent-card span { font-size: 11.5px; opacity: .75; }

/* Text side */
.story-text .section-heading { margin-bottom: 24px; }
.story-body {
  font-size: 15.5px; color: var(--clr-muted);
  line-height: 1.85; margin-bottom: 18px;
}
.story-body em { color: var(--clr-accent); font-style: italic; }

.story-signature {
  display: flex; align-items: center; gap: 18px; margin-top: 32px;
}
.story-signature__line { width: 40px; height: 2px; background: var(--clr-accent); border-radius: 2px; flex-shrink: 0; }
.story-signature__text strong { display: block; font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: var(--clr-text); }
.story-signature__text span { font-size: 12px; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 1.5px; }

/* =============================================================
   FOUNDER SECTION
   ============================================================= */
.founder-section {
  background: var(--clr-cream-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.founder-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(27,61,47,0.02) 40px, rgba(27,61,47,0.02) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(27,61,47,0.02) 40px, rgba(27,61,47,0.02) 41px);
  pointer-events: none;
}
.founder-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

/* Photo side */
.founder-photo-wrap { position: relative; }
.founder-photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27,61,47,0.18);
  aspect-ratio: 4/5;
  background: var(--clr-light-green);
}

/* *** REPLACE src with Anita's actual photo path *** */
.founder-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* Placeholder — only shown via JS when image fails to load */
.founder-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  background: linear-gradient(160deg, var(--clr-light-green) 0%, #c8e6d4 100%);
  z-index: 1;
}
.founder-photo-placeholder svg { fill: var(--clr-mid-green); opacity: .4; }
.founder-photo-placeholder span {
  font-size: 13px; color: var(--clr-mid-green);
  font-weight: 500; letter-spacing: .5px; opacity: .6;
  text-align: center; padding: 0 24px;
}
/* Ensure the real photo sits above background, below placeholder */
.founder-photo-frame img {
  position: relative; z-index: 2;
}

/* Corner accent badge */
.founder-photo-badge {
  position: absolute; bottom: -18px; left: -18px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--clr-accent);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(200,80,42,0.4);
  border: 4px solid var(--clr-white);
  z-index: 2;
}
.founder-photo-badge svg { fill: white; }
.founder-photo-badge span { font-size: 8.5px; color: rgba(255,255,255,0.85); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

/* Decorative quote mark behind photo */
.founder-deco-quote {
  position: absolute; top: -24px; right: -24px;
  font-family: var(--ff-display); font-size: 220px;
  font-weight: 700; line-height: 1;
  color: rgba(27,61,47,0.06); pointer-events: none;
  user-select: none; z-index: 0;
}

/* Text side */
.founder-text { position: relative; z-index: 1; }
.founder-text .section-heading { margin-bottom: 8px; }
.founder-name-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--clr-light-green);
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 8px;
  margin-bottom: 24px;
}
.founder-name-tag .name-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clr-mid-green);
}
.founder-name-tag span { font-size: 13px; font-weight: 600; color: var(--clr-mid-green); }

.founder-bio {
  font-size: 15.5px; color: var(--clr-muted);
  line-height: 1.85; margin-bottom: 18px;
}
.founder-bio strong { color: var(--clr-text); font-weight: 600; }
.founder-bio em { color: var(--clr-accent); font-style: italic; }

.founder-values {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 28px 0 32px;
}
.founder-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: var(--clr-white);
  border: 1.5px solid rgba(27,61,47,0.12);
  font-size: 12.5px; font-weight: 600; color: var(--clr-text);
}
.founder-tag svg { fill: var(--clr-accent); flex-shrink: 0; }

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

/* =============================================================
   MISSION BANNER
   ============================================================= */
.mission-banner {
  background: var(--clr-dark-green);
  position: relative; padding: 40px 0 60px;
}
.mb-wave-top, .mb-wave-bot { line-height: 0; overflow: hidden; }
.mb-wave-top svg, .mb-wave-bot svg { display: block; width: 100%; height: 56px; }

.mb-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px);
}

.mb-grid {
  display: flex; align-items: stretch; gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; overflow: hidden;
}
.mb-card {
  flex: 1; padding: 48px 36px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .3s;
}
.mb-card:hover { background: rgba(255,255,255,0.04); }
.mb-divider { width: 1px; background: rgba(255,255,255,0.08); align-self: stretch; flex-shrink: 0; }
.mb-card__icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: rgba(200,80,42,0.18);
  display: flex; align-items: center; justify-content: center;
}
.mb-card__icon svg { fill: var(--clr-accent); }
.mb-card h3 {
  font-family: var(--ff-display); font-size: 24px; font-weight: 700;
  color: var(--clr-white); letter-spacing: -.2px;
}
.mb-card p { font-size: 14.5px; color: rgba(255,255,255,0.62); line-height: 1.8; }

/* =============================================================
   WHAT WE DO
   ============================================================= */
.what-we-do {
  background: var(--clr-cream);
  padding: 100px 0;
}
.wwd-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 22px;
}
.wwd-card {
  background: var(--clr-white);
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: 0 4px 24px rgba(27,61,47,0.07);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.wwd-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(27,61,47,0.13); }
.wwd-card__num {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--ff-display); font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.55); letter-spacing: 1px; z-index: 2;
}
.wwd-card__img {
  height: 200px; background-size: cover; background-position: center;
  background-color: var(--clr-light-green);
  position: relative;
}
.wwd-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,16,0.45) 0%, transparent 60%);
}
.wwd-card__body { padding: 22px 22px 26px; }
.wwd-card__body h3 {
  font-family: var(--ff-display); font-size: 20px; font-weight: 700;
  color: var(--clr-text); margin-bottom: 8px; letter-spacing: -.2px;
}
.wwd-card__body p { font-size: 13px; color: var(--clr-muted); line-height: 1.7; margin-bottom: 16px; }
.wwd-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--clr-accent);
  transition: gap .2s, color .2s;
}
.wwd-link svg { fill: currentColor; transition: transform .2s; }
.wwd-link:hover { color: var(--clr-dark-green); gap: 10px; }
.wwd-link:hover svg { transform: translateX(2px); }

/* =============================================================
   WHY CHOOSE US
   ============================================================= */
.why-choose {
  background: var(--clr-cream-dark);
  padding: 100px 0;
}
.wc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.wc-text .section-heading { margin-bottom: 16px; }
.wc-intro { font-size: 15.5px; color: var(--clr-muted); line-height: 1.8; margin-bottom: 36px; }

.reason-list { display: flex; flex-direction: column; gap: 24px; }
.reason-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 22px;
  background: var(--clr-white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(27,61,47,0.05);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.reason-item:hover { transform: translateX(6px); box-shadow: 0 6px 24px rgba(27,61,47,0.1); }
.reason-num {
  font-family: var(--ff-display); font-size: 28px; font-weight: 700;
  color: var(--clr-light-green); line-height: 1; flex-shrink: 0;
  min-width: 36px;
}
.reason-item strong { display: block; font-size: 15px; font-weight: 600; color: var(--clr-text); margin-bottom: 4px; }
.reason-item p { font-size: 13.5px; color: var(--clr-muted); line-height: 1.65; margin: 0; }

/* Visual side */
.wc-visual { position: relative; }
.wc-img-wrap { border-radius: 24px; overflow: hidden; position: relative; }
.wc-img {
  height: 480px; background-size: cover; background-position: center;
  background-color: var(--clr-light-green);
  transition: transform .45s var(--ease);
}
.wc-img-wrap:hover .wc-img { transform: scale(1.03); }
.wc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,25,16,0.25) 0%, rgba(10,25,16,0.1) 100%);
}

.wc-stat {
  position: absolute; z-index: 2;
  background: var(--clr-white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(27,61,47,0.16);
  display: flex; flex-direction: column; gap: 2px;
  animation: statFloat 4s ease-in-out infinite;
}
.wc-stat--tl { top: 24px; left: -20px; animation-delay:0s; }
.wc-stat--br { bottom: 24px; right: -20px; animation-delay:1.5s; }
@keyframes statFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.wc-stat__num {
  font-family: var(--ff-display); font-size: 32px; font-weight: 700;
  color: var(--clr-dark-green); line-height: 1;
}
.wc-stat__num sup { font-size: 16px; }
.wc-stat__label { font-size: 11.5px; color: var(--clr-muted); font-weight: 500; }

.wc-badge {
  position: absolute; top: 50%; left: -24px;
  transform: translateY(-50%);
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(200,80,42,0.38);
  white-space: nowrap;
  animation: statFloat 4s ease-in-out infinite; animation-delay:.8s;
}
.wc-badge svg { fill: currentColor; }

/* =============================================================
   PULL QUOTE
   ============================================================= */
.pull-quote-section {
  background: var(--clr-dark-green);
  position: relative; padding: 40px 0 60px;
}
.pq-wave-top, .pq-wave-bot { line-height: 0; overflow: hidden; }
.pq-wave-top svg, .pq-wave-bot svg { display: block; width: 100%; height: 56px; }

.pq-inner {
  text-align: center;
  max-width: 760px; margin: 0 auto;
  padding: 20px 0;
}
.pq-mark { fill: var(--clr-accent); opacity:.7; margin: 0 auto 20px; }
.pq-quote {
  font-family: var(--ff-display); font-size: clamp(20px,3vw,30px);
  font-style: italic; color: rgba(255,255,255,.9);
  line-height: 1.6; margin-bottom: 28px; quotes: none;
  word-wrap: break-word;
}
.pq-author {
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.pq-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(232,240,235,0.9);
  font-family: var(--ff-display); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-dark-green); flex-shrink: 0;
}
.pq-author strong { display: block; font-size: 15px; color: rgba(255,255,255,.9); font-weight: 600; text-align: left; }
.pq-author span { font-size: 12px; color: rgba(255,255,255,.45); text-align: left; }
.pq-stars { display: flex; justify-content: center; gap: 6px; }
.pq-stars svg { fill: #f5c842; }

/* =============================================================
   ABOUT CTA
   ============================================================= */
.about-cta { background: var(--clr-cream); padding: 80px 0 100px; }
.acta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.acta-panel {
  position: relative; border-radius: 22px; overflow: hidden;
  min-height: 320px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  background-color: var(--clr-dark-green);
  transition: transform .4s var(--ease);
}
.acta-panel:hover { transform: translateY(-4px); }
.acta-panel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,16,0.92) 0%, rgba(10,25,16,0.3) 60%, transparent 100%);
}
.acta-panel__overlay--accent {
  background: linear-gradient(to top, rgba(160,50,10,0.9) 0%, rgba(50,20,10,0.4) 60%, transparent 100%);
}
.acta-panel__content {
  position: relative; z-index: 2; padding: 32px 32px 36px;
}
.acta-panel__content h3 {
  font-family: var(--ff-display); font-size: 28px; font-weight: 700;
  color: var(--clr-white); margin-bottom: 8px; letter-spacing: -.2px;
}
.acta-panel__content p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 22px; max-width: 320px; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1280px) {
  .wwd-grid { grid-template-columns: repeat(2,1fr); }
  .mb-grid { flex-direction: column; }
  .mb-divider { width: 100%; height: 1px; align-self: auto; }
}
@media (max-width: 1024px) {
  .story-grid { gap: 48px; }
  .founder-grid { gap: 56px; }
  .wc-grid { gap: 48px; }
}
@media (max-width: 991px) {
  .about-hero { padding-top: var(--nav-h-mobile); min-height: 85svh; }
  .about-hero::before { top: var(--nav-h-mobile); }
  .about-hero__content { padding-bottom: 90px; }
  .about-hero__heading { font-size: clamp(28px,7vw,52px); }
  .ab-br { display: none; }
  .values-grid { flex-direction: column; }
  .value-divider { width: 100%; height: 1px; align-self: auto; }
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-images { order: -1; }
  .story-img--sm { position: static; width: 100%; margin-top: 14px; }
  .story-img--main { height: 300px; }
  .story-accent-card { left: 0; bottom: -16px; }
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-photo-frame { aspect-ratio: 3/4; max-width: 400px; margin: 0 auto; }
  .founder-deco-quote { font-size: 140px; top: -10px; right: -10px; }
  .wc-grid { grid-template-columns: 1fr; gap: 56px; }
  .wc-img { height: 340px; }
  .wc-stat--tl { left: 12px; }
  .wc-stat--br { right: 12px; }
  .wc-badge { left: 50%; transform: translateX(-50%); top: auto; bottom: -20px; }
  .acta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .wwd-grid { grid-template-columns: 1fr; }
  .story-section { padding: 72px 0; }
  .founder-section { padding: 72px 0; }
  .what-we-do { padding: 72px 0; }
  .why-choose { padding: 72px 0; }
  .about-cta { padding: 56px 0 72px; }
  .mb-card { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .about-hero__ctas { flex-direction: column; align-items: center; }
  .hero-pill { width: 100%; max-width: 260px; justify-content: center; }
  .story-img--main { height: 240px; }
  .acta-panel { min-height: 260px; }
  .acta-panel__content { padding: 24px 24px 28px; }
  .acta-panel__content h3 { font-size: 22px; }
}
@media (max-width: 480px) {
  .founder-grid { gap: 36px; }
  .founder-photo-frame { aspect-ratio: 1/1; }
  .reason-item { flex-direction: column; gap: 8px; padding: 16px 18px; }
  .reason-num { font-size: 22px; }
  .wc-stat { padding: 12px 14px; }
  .wc-stat__num { font-size: 24px; }
  .founder-ctas { flex-direction: column; }
  .founder-ctas a { width: 100%; justify-content: center; }
}
@media (max-width: 414px) {
  .about-hero__heading { font-size: clamp(24px,8.5vw,36px); }
}
