/* ============================================================
   ABOUT PAGE — Popy Floppy
   ============================================================ */

.about-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem var(--gap) 0;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */

.about-hero {
  text-align: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

.about-hero h1 {
  font-family: 'LuckiestGuy', system-ui, sans-serif;
  font-size: 3rem;
  color: var(--logo-purple);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-section--reversed {
  direction: rtl;
}

.about-section--reversed > * {
  direction: ltr;
}

.about-section--full {
  grid-template-columns: 1fr;
}

.about-text h2 {
  font-family: 'LuckiestGuy', system-ui, sans-serif;
  font-size: 1.8rem;
  color: var(--logo-green);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 0.85rem;
  line-height: 1.7;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */

.about-img-placeholder {
  aspect-ratio: 4 / 3;
  background-color: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-img-placeholder .placeholder-icon {
  font-size: 3rem;
  opacity: 0.35;
}

.about-img-placeholder span {
  opacity: 0.5;
}

/* Portrait variant */
.about-img-placeholder--portrait {
  aspect-ratio: 3 / 4;
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================================
   VALUES CARDS
   ============================================================ */

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.value-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  opacity: 0.75;
}

.value-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Placeholder text shimmer blocks */
.text-placeholder {
  height: 0.9em;
  background-color: var(--border);
  border-radius: 4px;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.text-placeholder--short { width: 60%; }
.text-placeholder--med   { width: 85%; }
.text-placeholder--full  { width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 700px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-section--reversed {
    direction: ltr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }
}
