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

/* ─── HERO ─── */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1A4A70 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 88px 8vw 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(46,134,193,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.3rem;
  font-weight: 400;
}

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

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-img {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* ─── PAIN POINTS ─── */

.pain { background: var(--slate); }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

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

.pain-list { list-style: none; margin-top: 1.4rem; }

.pain-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--mist);
  font-size: 1rem;
  color: var(--text-mid);
}

.pain-list li:last-child { border-bottom: none; }

.pain-close {
  margin-top: 2rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--blue-light);
  padding-left: 1.2rem;
  line-height: 1.5;
}

/* ─── SOUND FAMILIAR ─── */

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

.familiar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.familiar-card {
  background: var(--slate);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1.5px solid var(--mist);
  transition: box-shadow .2s, transform .2s;
}

.familiar-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.familiar-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .6rem;
  font-weight: 400;
}

.familiar-card p { font-size: .93rem; color: var(--text-mid); line-height: 1.65; }

.familiar-close {
  margin-top: 2.5rem;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}

/* ─── ABOUT TEASER ─── */

.about-teaser { background: var(--navy); color: var(--white); }

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

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

.about-teaser .section-eyebrow { color: var(--accent); }
.about-teaser h2 { color: var(--white); }
.about-teaser p { color: rgba(255,255,255,.8); margin-bottom: 1.1rem; }
.about-teaser .btn-primary { margin-top: .5rem; }

.about-credentials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.cred-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: .04em;
}

/* ─── SERVICES GRID ─── */

.services { background: var(--sky); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 34px 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--mist);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}

.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.service-badge {
  display: inline-block;
  background: var(--sky);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--mist);
  margin-bottom: 1.1rem;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: .8rem;
}

.service-card p { font-size: .93rem; color: var(--text-mid); line-height: 1.65; flex: 1; }

.service-link {
  display: inline-block;
  margin-top: 1.4rem;
  color: var(--blue-light);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}

.service-link:hover { color: var(--navy); }
.service-link::after { content: ' →'; }

/* ─── TESTIMONIALS ─── */

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

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

.testimonial {
  background: var(--slate);
  border-radius: 14px;
  padding: 28px;
  border: 1.5px solid var(--mist);
}

.testimonial blockquote {
  font-size: .96rem;
  color: var(--text-mid);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial cite::before { content: '—'; color: var(--blue-light); }

.stars { color: var(--accent); font-size: .85rem; margin-bottom: .7rem; letter-spacing: 2px; }

.testimonials-cta { margin-top: 2.5rem; text-align: center; }

/* ─── PHILOSOPHY ─── */

.philosophy { background: var(--navy-mid); color: var(--white); }

.philosophy-inner { max-width: 780px; margin: 0 auto; text-align: center; }

.philosophy .section-eyebrow { color: var(--accent); }
.philosophy h2 { color: var(--white); margin-bottom: 1.5rem; }
.philosophy p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 1rem; }

.philosophy-pillars {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pillar {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 22px 26px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.pillar h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 400;
}

/* ─── FINAL CTA ─── */

.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1A4A70 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 8vw;
}

.final-cta h2 { color: var(--white); margin-bottom: 1rem; }

.final-cta p {
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2.2rem;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 6vw; }
  .hero-img { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .familiar-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
