/* ═══════════════════════════════════════════
   ABOUT PAGE STYLES
═══════════════════════════════════════════ */

/* ── Hero ────────────────────────────── */
.about-hero {
  padding: var(--section-pad) 0 0;
  text-align: center;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin: 0.6rem 0 1.2rem;
}

.about-hero-title em {
  font-style: italic;
  color: var(--brand);
}

.about-hero-sub {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.about-hero-visual {
  margin-top: 3rem;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gap);
}

.about-hero-visual .hero-img {
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
}

/* ── Placeholder images ─────────────── */
.about-placeholder-img {
  background: var(--cream);
  border: 2px dashed var(--cream-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  color: var(--text-light);
  text-align: center;
  min-height: 280px;
  aspect-ratio: 4 / 3;
}

.about-placeholder-img svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.about-placeholder-img span {
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 280px;
}

/* ── Content sections ────────────────── */
.about-section {
  padding: var(--section-pad) 0;
}

.about-section.alt {
  background: var(--cream);
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-content-grid.reverse {
  direction: rtl;
}

.about-content-grid.reverse > * {
  direction: ltr;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

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

/* ── Values ──────────────────────────── */
.about-values {
  padding: var(--section-pad) 0;
  text-align: center;
}

.about-values-header {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.about-values-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 1rem;
}

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

.about-value {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.about-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(82,113,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--brand);
}

.about-value h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.about-value p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Closing CTA ─────────────────────── */
.about-closing {
  padding: var(--section-pad) 0;
  background: var(--navy);
  text-align: center;
}

.about-closing-content {
  max-width: 640px;
  margin: 0 auto;
}

.about-closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: #fff;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-style: italic;
}

.about-closing .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand);
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.about-closing .btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

/* ── Responsive ──────────────────────── */
@media (max-width: 900px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content-grid.reverse {
    direction: ltr;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-placeholder-img {
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }
}

/* ─── MOBILE (≤600px) ─── */
@media (max-width: 600px) {
  /* ── Hero ── */
  .about-hero {
    padding-top: 1.5rem;
  }
  .about-hero-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
    line-height: 1.2;
  }
  .about-hero-sub {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .about-hero-visual {
    margin-top: 1.5rem;
  }

  /* ── Content sections ── */
  .about-text h2 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin-bottom: 0.8rem;
  }
  .about-text p {
    font-size: 0.92rem;
    line-height: 1.65;
  }
  .about-placeholder-img {
    min-height: 160px;
    aspect-ratio: 16 / 10;
    padding: 1.2rem;
  }
  .about-placeholder-img span {
    font-size: 0.78rem;
  }

  /* ── Values ── */
  .about-values-header {
    margin-bottom: 2rem;
  }
  .about-values-sub {
    font-size: 0.92rem;
  }
  .about-value {
    padding: 1.5rem 1.2rem;
  }
  .about-value-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.8rem;
  }
  .about-value h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }
  .about-value p {
    font-size: 0.85rem;
  }

  /* ── Closing CTA ── */
  .about-closing-quote {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    margin-bottom: 1.5rem;
  }
  .about-closing .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    min-height: 48px;
  }
}
