/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-hero {
  padding-top: clamp(8rem, 15vw, 12rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.about-hero h1 {
  max-width: none;
  margin-top: 1rem;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
}

/* ---------- Story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.story-photo-frame {
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -28px rgba(43,42,40,0.3);
}

.story-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem 1.5rem 1.6rem;
  background: linear-gradient(to top, rgba(20,18,16,0.72), rgba(20,18,16,0));
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}

.story-photo-caption span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--cream);
}
.story-photo-caption small {
  color: rgba(244,239,230,0.85);
  font-size: 0.82rem;
}

.story-copy p { color: var(--ink-soft); margin-top: 1.1rem; max-width: 58ch; }
.story-copy h2 { margin-top: 0.6rem; }

@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-photo-frame { max-width: 340px; margin: 0 auto; }
}

/* ---------- Mission band ---------- */

.mission-band {
  background: var(--berry);
}
.mission-band .display-3 {
  font-style: italic;
  line-height: 1.4;
}

/* ---------- Beliefs ---------- */

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.belief-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 2.2rem 1.9rem;
  border: 1px solid rgba(43,42,40,0.06);
}

.belief-mark {
  display: inline-flex;
  margin-bottom: 1.1rem;
}

.belief-card h3 { font-size: 1.2rem; margin-bottom: 0.7rem; font-family: var(--font-body); font-weight: 700; }
.belief-card p { color: var(--ink-soft); font-size: 0.94rem; }

@media (max-width: 860px) {
  .beliefs-grid { grid-template-columns: 1fr; }
}

/* ---------- Background / credibility ---------- */

.background-sec { background: var(--cream-deep); }

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

.background-grid h2 { margin-top: 0.6rem; }
.background-grid p { color: var(--ink-soft); margin-bottom: 1.1rem; }

@media (max-width: 860px) {
  .background-grid { grid-template-columns: 1fr; }
}

/* ---------- Fit check ---------- */

.fit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.fit-item {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: default;
  text-align: center;
}
