@import url("./styles.css");

/* About Us page styles */

#aboutPage {
  --au-black: #1a1a1a;
  --au-ink: #111111;
  --au-white: #ffffff;
  --au-cream: #f6f4f1;
  --au-cream-2: #f7f7f5;
  --au-yellow: #f5d400;
  --au-gray-500: #888880;
  --au-gray-700: #444440;
  --au-radius: 12px;
  --au-radius-lg: 20px;
  --au-radius-xl: 28px;
  color: var(--au-ink);
  line-height: 1.6;
  overflow-x: hidden;
}

#aboutPage img {
  display: block;
  max-width: 100%;
  height: auto;
}

#aboutPage .section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--au-yellow);
  background: var(--au-ink);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

#aboutPage .section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--au-ink);
  margin-bottom: 18px;
}

#aboutPage .section-title span {
  color: var(--au-yellow);
}

#aboutPage .section-body {
  font-size: 17px;
  color: var(--au-gray-700);
  max-width: 540px;
  margin-bottom: 24px;
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  background: var(--au-black);
  color: var(--au-white);
  padding: 80px 5% 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 680px;
  align-items: end;
  overflow: hidden;
  position: relative;
}

.hero-content {
  padding: 0 0 80px;
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--au-yellow);
  margin-bottom: 18px;
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--au-yellow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--au-yellow);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--au-white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-images {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-img-main {
  position: relative;
  width: 100%;
  max-width: 640px;
}

.hero-img-main img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px 24px 0 0;
}

.hero-team-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--au-white);
  color: var(--au-ink);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-team-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ─── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  background: var(--au-cream);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 22px 5%;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--au-ink);
}

.trust-icon {
  width: 22px;
  height: 22px;
  color: var(--au-ink);
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(17, 17, 17, 0.14);
}

/* ─── STORY ─────────────────────────────────────────── */
.story {
  padding: 90px 5%;
  background: var(--au-white);
  text-align: left;
}

.story-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-image-wrap img {
  width: 100%;
  border-radius: var(--au-radius-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.story-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--au-white);
  color: var(--au-ink);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.story-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--au-ink);
  line-height: 1.45;
}

.story-list-dot {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background: var(--au-yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.story-list-dot svg {
  width: 12px;
  height: 12px;
}

/* ─── NUMBERS BAND ──────────────────────────────────── */
.numbers-band {
  background: var(--au-ink);
  padding: 56px 5%;
}

.numbers-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.number-card {
  text-align: center;
  padding: 24px;
}

.number-val {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--au-yellow);
  line-height: 1;
  margin-bottom: 10px;
}

.number-label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

/* ─── TEAM ──────────────────────────────────────────── */
.team-section {
  padding: 90px 5%;
  background: var(--au-cream-2);
}

.team-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.team-image-wrap {
  position: relative;
  order: 1;
}

.team-image-wrap img {
  width: 100%;
  border-radius: var(--au-radius-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.team-overlay-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--au-white);
  color: var(--au-ink);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.team-text {
  order: 2;
}

.team-quote {
  background: var(--au-white);
  border-left: 4px solid var(--au-yellow);
  padding: 22px 24px;
  border-radius: 0 var(--au-radius) var(--au-radius) 0;
  margin: 28px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-quote p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: var(--au-ink);
  line-height: 1.5;
  margin-bottom: 10px;
}

.team-quote cite {
  font-size: 13px;
  font-weight: 700;
  color: var(--au-gray-500);
  font-style: normal;
}

.team-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--au-white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--au-ink);
}

.team-pill-icon {
  font-size: 14px;
}

/* ─── LOGISTICS ─────────────────────────────────────── */
.logistics-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 0 5%;
}

.logistics-image-wrap {
  position: relative;
}

.logistics-image-wrap img {
  width: 100%;
  border-radius: var(--au-radius-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.logistics-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--au-white);
  color: var(--au-ink);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.warehouse-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.warehouse-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--au-white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--au-ink);
}

.warehouse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

/* ─── PHOTO GRID ────────────────────────────────────── */
.photo-grid-section {
  padding: 90px 5%;
  background: var(--au-white);
}

.photo-grid-header {
  text-align: center;
  margin-bottom: 42px;
}

.photo-grid-header .section-label {
  margin-bottom: 12px;
}

.photo-grid-header .section-title {
  margin-bottom: 0;
}

.photo-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.photo-grid-item {
  border-radius: var(--au-radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s ease;
}

.photo-grid-item:hover img {
  transform: scale(1.03);
}

/* ─── WHY PETBUDDS ──────────────────────────────────── */
.different {
  padding: 90px 5%;
  background: var(--au-cream);
}

.different-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.different-left {
  position: sticky;
  top: 100px;
}

.different-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.diff-card {
  background: var(--au-white);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: var(--au-radius-lg);
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.diff-icon {
  width: 42px;
  height: 42px;
  background: var(--au-yellow);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.diff-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--au-ink);
}

.diff-text h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
}

.diff-text p {
  font-size: 14px;
  color: var(--au-gray-700);
  line-height: 1.55;
}

/* ─── MISSION ───────────────────────────────────────── */
.mission {
  background: var(--au-yellow);
  padding: 90px 5%;
  text-align: center;
}

.mission-inner {
  max-width: 820px;
  margin: 0 auto;
}

.mission .section-label {
  background: var(--au-ink);
  color: var(--au-yellow);
}

.mission .section-title {
  color: var(--au-ink);
  margin-bottom: 20px;
}

.mission .section-title span {
  color: var(--au-white);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.mission-body {
  font-size: 18px;
  color: var(--au-ink);
  opacity: 0.85;
  line-height: 1.65;
}

/* ─── FAQ ───────────────────────────────────────────── */
.faq {
  padding: 90px 5%;
  background: var(--au-white);
}

.faq-grid {
  max-width: 1000px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: var(--au-cream-2);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: var(--au-radius-lg);
  padding: 24px;
}

.faq-q {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--au-ink);
  margin-bottom: 10px;
  line-height: 1.35;
}

.faq-a {
  font-size: 14px;
  color: var(--au-gray-700);
  line-height: 1.6;
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 40px;
    max-width: 100%;
  }

  .hero-images {
    order: -1;
    justify-content: flex-start;
  }

  .hero-img-main {
    max-width: 100%;
  }

  .hero-img-main img {
    border-radius: 24px 24px 0 0;
  }

  .story-inner,
  .team-inner,
  .logistics-inner,
  .different-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .team-image-wrap {
    order: 2;
  }

  .team-text {
    order: 1;
  }

  .different-left {
    position: static;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .different-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .trust-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .trust-divider {
    display: none;
  }

  .hero-stat-row {
    gap: 18px;
  }

  .hero-stat-divider {
    display: none;
  }

  .numbers-grid,
  .different-cards,
  .faq-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .story-badge,
  .team-overlay-badge,
  .logistics-badge {
    left: 12px;
    right: auto;
    bottom: 12px;
    font-size: 12px;
    padding: 8px 12px;
  }

  .team-overlay-badge,
  .logistics-badge {
    left: auto;
    right: 12px;
  }

  #aboutPage .section-title {
    font-size: 28px;
  }

  .mission,
  .different,
  .faq,
  .photo-grid-section,
  .team-section,
  .story {
    padding: 64px 5%;
  }
}

/* Override shared story text-align */
.story { text-align: left; }
