/* ─────────────────────────────────────────
   PHOENIX FITNESS — ABOUT PAGE STYLES
───────────────────────────────────────── */

/* ─── INTRO ─── */

.intro { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

.intro-photo {
  position: sticky;
  top: 88px;
}

.intro-photo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.intro-creds {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 2rem;
}

.cred-tag {
  background: var(--sky);
  border: 1px solid var(--mist);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .04em;
}

.intro-text p { color: var(--text-mid); margin-bottom: 1.1rem; }
.intro-text p:last-of-type { margin-bottom: 1.8rem; }

/* ─── APPROACH ─── */

.approach { background: var(--slate); }
.approach-inner { max-width: 820px; }
.approach p { color: var(--text-mid); margin-bottom: 1.1rem; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.approach-card {
  background: var(--white);
  border-radius: 12px;
  padding: 26px 24px;
  border: 1.5px solid var(--mist);
  box-shadow: var(--shadow);
}

.approach-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: .5rem;
}

.approach-card p { font-size: .93rem; color: var(--text-mid); margin: 0; }

/* ─── GYM ─── */

.gym { background: var(--white); }

.gym-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gym-text p { color: var(--text-mid); margin-bottom: 1.1rem; }

.gym-photo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.gym-detail {
  margin-top: 1.5rem;
  background: var(--sky);
  border-radius: 10px;
  padding: 18px 20px;
  border: 1px solid var(--mist);
}

.gym-detail p { font-size: .92rem; color: var(--text-mid); margin: 0; }
.gym-detail p + p { margin-top: .4rem; }
.gym-detail strong { color: var(--navy); }

/* ─── PHILOSOPHY QUOTE ─── */

.philosophy { background: var(--navy); color: var(--white); text-align: center; }

.philosophy blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.philosophy p { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-photo { position: static; }
  .approach-grid { grid-template-columns: 1fr; }
  .gym-grid { grid-template-columns: 1fr; }
}
