/* ═══════════════════════════════════════════════
   ABOUT US PAGE — CSS
   Paste at end of main.css OR use as about.css
═══════════════════════════════════════════════ */

.about-page { background: var(--bg-main); }

/* ── HERO ── */
.about-hero {
  position: relative;
  background: var(--bg-dark);
  padding: 80px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.about-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(200,155,82,.1) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(114,14,2,.07) 0%, transparent 55%);
  pointer-events: none;
}
.about-hero .container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.about-hero-text { }
.about-hero-title {
  font-family: 'Merriweather', serif;
  font-size: 44px; font-weight: 700;
  color: #fff; line-height: 1.2;
  margin: 12px 0 20px;
}
.about-hero-highlight { color: var(--gold); }
.about-hero-desc {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 520px; margin-bottom: 32px;
}
.about-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero image circle */
.about-hero-img-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  position: relative;
}
.about-hero-img-circle {
  width: 320px; height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(200,155,82,.12), 0 24px 60px rgba(0,0,0,.5);
  background: var(--card-bg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-hero-img-circle img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-hero-img-fallback {
  display: none; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.about-hero-badge {
  background: var(--bg-darkest);
  border: 1px solid rgba(200,155,82,.3);
  border-radius: 50px;
  padding: 10px 24px;
  text-align: center;
}
.ahb-name { display: block; font-size: 15px; font-weight: 700; color: var(--gold); }
.ahb-role { display: block; font-size: 12px; color: var(--text-gray); margin-top: 2px; }

/* ── STATS ── */
.about-stats {
  background: var(--bg-darker);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.about-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}
.about-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  text-align: center;
  transition: background .2s;
}
.about-stat:last-child { border-right: none; }
.about-stat:hover { background: rgba(200,155,82,.04); }
.as-number {
  font-family: 'Merriweather', serif;
  font-size: 36px; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.as-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ── SECTIONS ── */
.about-section { padding: 80px 0; }
.about-section-dark { background: var(--bg-darker); }
.about-centered { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.about-section-title {
  font-family: 'Merriweather', serif;
  font-size: 32px; font-weight: 700;
  color: #fff; line-height: 1.3;
  margin: 8px 0 16px;
}
.about-section-desc {
  font-size: 16px; line-height: 1.75;
  color: var(--text-muted);
}

/* ── STORY GRID ── */
.about-story-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: start;
}
.about-story-text { }
.about-story-content p {
  font-size: 15px; line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about-story-content strong { color: var(--text-white); }
.about-pack-names {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.pack-name {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  transition: all .2s;
}
.pack-name:hover { border-color: var(--gold); color: var(--gold); }
.pack-name.rainbow {
  border-color: rgba(253,199,0,.2);
  color: rgba(253,199,0,.6);
  background: rgba(253,199,0,.04);
}
.about-story-img {
  position: relative;
}
.about-story-img img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  display: block;
}
.about-img-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(20,30,23,.9);
  border: 1px solid rgba(200,155,82,.3);
  border-radius: 8px; padding: 8px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--gold);
  display: flex; align-items: center; gap: 6px;
  backdrop-filter: blur(8px);
}

/* ── PRODUCT FEATURE ── */
.about-products-intro { margin-top: 48px; }
.about-product-feat {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 60px; align-items: center;
}
.apf-img {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  order: 0;
}
.apf-img img {
  width: 100%; display: block;
  border-radius: 20px;
}
.apf-info { order: 1; }
.apf-title {
  font-family: 'Merriweather', serif;
  font-size: 28px; font-weight: 700;
  color: #fff; margin: 8px 0 12px;
}
.apf-desc {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 20px;
}
.apf-text { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.apf-list {
  display: flex; flex-direction: column; gap: 12px;
  margin: 16px 0 20px; padding: 0;
}
.apf-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-muted); line-height: 1.5;
}
.apf-list li svg { flex-shrink: 0; margin-top: 2px; }
.apf-list li strong { color: var(--text-white); }
.apf-note {
  font-size: 14px; color: var(--text-gray);
  font-style: italic; margin-top: 8px;
  padding: 12px 16px;
  background: rgba(200,155,82,.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

/* ── VALUES ── */
.about-values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.about-value-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 28px 24px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.about-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,155,82,.25);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.avc-icon {
  width: 52px; height: 52px;
  background: rgba(200,155,82,.1);
  border: 1px solid rgba(200,155,82,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
}
.avc-title {
  font-family: 'Merriweather', serif;
  font-size: 17px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.avc-desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

/* ── VISION ── */
.about-vision {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 60px; align-items: center;
}
.about-vision-img {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.about-vision-img img { width: 100%; display: block; border-radius: 20px; }
.about-vision-text p {
  font-size: 15px; line-height: 1.85;
  color: var(--text-muted); margin-bottom: 16px;
}
.about-vision-text strong { color: var(--text-white); }
.about-vision-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.about-vision-tags span {
  background: rgba(200,155,82,.1);
  border: 1px solid rgba(200,155,82,.2);
  border-radius: 8px; padding: 8px 16px;
  font-size: 13px; font-weight: 500; color: var(--gold);
}

/* ── CTA ── */
.about-cta {
  position: relative;
  background: var(--bg-darker);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.about-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,155,82,.09) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(114,14,2,.06) 0%, transparent 60%);
  pointer-events: none;
}
.about-cta-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.about-cta-pawprint { font-size: 48px; margin-bottom: 16px; display: block; }
.about-cta-title {
  font-family: 'Merriweather', serif;
  font-size: 40px; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}
.about-cta-desc {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
}
.about-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Extra page editor content */
.about-extra-content h1,.about-extra-content h2,.about-extra-content h3 {
  font-family: 'Merriweather',serif; color: #fff; margin: 24px 0 12px;
}
.about-extra-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-extra-content img { max-width: 100%; border-radius: 12px; margin: 16px 0; }
.about-extra-content a { color: var(--gold); }
.about-extra-content ul { padding-left: 20px; color: var(--text-muted); line-height: 1.8; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .about-hero .container { grid-template-columns: 1fr; text-align: center; }
  .about-hero-img-wrap { display: none; }
  .about-hero-btns { justify-content: center; }
  .about-hero-desc { max-width: 100%; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-product-feat { grid-template-columns: 1fr; }
  .apf-img { order: 0 !important; }
  .apf-info { order: 1 !important; }
  .about-vision { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-bottom: 1px solid rgba(255,255,255,.06); }
  .about-stat:nth-child(2n) { border-right: none; }
}
@media (max-width: 768px) {
  .about-hero { padding: 56px 0 56px; }
  .about-hero-title { font-size: 30px; }
  .about-hero-desc { font-size: 15px; }
  .about-section { padding: 56px 0; }
  .about-section-title { font-size: 24px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-cta { padding: 72px 0; }
  .about-cta-title { font-size: 28px; }
  .about-cta-desc { font-size: 15px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .apf-title { font-size: 22px; }
  .about-pack-names { gap: 6px; }
  .pack-name { font-size: 12px; padding: 5px 12px; }
}
@media (max-width: 480px) {
  .about-hero-title { font-size: 24px; }
  .about-hero-btns { flex-direction: column; align-items: center; }
  .about-cta-btns { flex-direction: column; align-items: center; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .as-number { font-size: 28px; }
}