/* ── Peptide Therapy Service Page ── */

/* ─ Hero ─ */
.pt-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 120px;
  background-image: url('/wp-content/uploads/2026/05/peptide-therapy-hero.webp');
  background-position: center center;
  background-size: cover;
}
.pt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.39);
}
.pt-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px;
}
.pt-hero__heading-col {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.pt-hero__text-col {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.pt-hero__h {
  font-family: var(--ff-h);
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  max-width: 471px;
}
.pt-hero__h em { font-style: italic; }
.pt-hero__sub {
  font-family: var(--ff-b);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  max-width: 480px;
}

/* ─ Container ─ */
.pt-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  box-sizing: border-box;
}

/* ─ Common text elements ─ */
.pt-label {
  font-family: var(--ff-b);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #226040;
  margin: 0 0 12px;
}
.pt-label--center { text-align: center; }
.pt-h {
  font-family: var(--ff-h);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
  color: #332106;
  margin: 0 0 24px;
}
.pt-h em {
  font-style: italic;
  color: #226040;
  font-weight: 400;
}
.pt-h--center {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.pt-text {
  font-family: var(--ff-b);
  font-size: 16px;
  font-weight: 400;
  color: #332106;
  line-height: 1.7;
  margin: 0 0 24px;
}
.pt-text--center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ─ Intro strip ─ */
.pt-intro {
  background: var(--cream);
  padding: 80px 0;
  border-bottom: 1px solid rgba(51,33,6,.08);
}
.pt-intro__text {
  font-family: var(--ff-b);
  font-size: 16px;
  font-weight: 400;
  color: #332106;
  line-height: 1.8;
  max-width: 900px;
  margin: 0;
}

/* ─ Sections ─ */
.pt-section { padding: 120px 0; }
.pt-section--cream { background: var(--cream); }
.pt-section--white { background: #fff; }

/* ─ Two-column layout ─ */
.pt-two-col {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}
.pt-two-col__left { flex: 1; }
.pt-two-col__right {
  flex: 1;
  padding-top: 8px;
}

/* ─ Compound cards (Sermorelin / BPC-157) ─ */
.pt-compounds {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pt-compound {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px;
}
.pt-compound__title {
  font-family: var(--ff-h);
  font-size: 16px;
  font-weight: 600;
  color: #332106;
  margin: 0 0 14px;
  line-height: 1.2;
}
.pt-compound__text {
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 400;
  color: #332106;
  line-height: 1.7;
  margin: 0 0 16px;
}
.pt-compound__best {
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 400;
  color: #226040;
  background: rgba(34,96,64,.08);
  border-radius: 10px;
  padding: 12px 16px;
  line-height: 1.55;
  margin: 0;
}

/* ─ Checklist ─ */
.pt-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pt-checklist li {
  font-family: var(--ff-b);
  font-size: 16px;
  font-weight: 400;
  color: #332106;
  line-height: 1.55;
  padding-left: 32px;
  position: relative;
}
.pt-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border: 2px solid #226040;
  border-radius: 50%;
}
.pt-checklist--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 60px;
  margin-top: 32px;
}

/* ─ Process steps ─ */
.pt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.pt-step {
  background: var(--cream);
  border-radius: 24px;
  padding: 40px 32px;
}
.pt-step__num {
  display: block;
  font-family: var(--ff-h);
  font-size: 36px;
  font-weight: 600;
  color: rgba(34,96,64,.25);
  line-height: 1;
  margin: 0 0 20px;
}
.pt-step__title {
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 600;
  color: #332106;
  margin: 0 0 16px;
  line-height: 1.3;
}
.pt-step__text {
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 400;
  color: #332106;
  line-height: 1.65;
  margin: 0;
}

/* ─ Feature cards ─ */
.pt-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.pt-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 40px 32px;
}
.pt-card__title {
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 600;
  color: #332106;
  margin: 0 0 16px;
  line-height: 1.3;
}
.pt-card__text {
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 400;
  color: #332106;
  line-height: 1.65;
  margin: 0;
}

/* ─ FAQ Accordion ─ */
.pt-faq { margin-top: 48px; }
.pt-faq__item { border-top: 1px solid rgba(51,33,6,.12); }
.pt-faq__item:last-child { border-bottom: 1px solid rgba(51,33,6,.12); }
.pt-faq__btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.pt-faq__btn:hover .pt-faq__q { color: #226040; }
.pt-faq__q {
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 600;
  color: #332106;
  line-height: 1.3;
  transition: color .25s ease;
}
.pt-faq__chevron {
  flex-shrink: 0;
  transition: transform .3s ease;
}
.pt-faq__item.is-open .pt-faq__chevron { transform: rotate(180deg); }
.pt-faq__body { overflow: hidden; }
.pt-faq__a {
  font-family: var(--ff-b);
  font-size: 16px;
  font-weight: 400;
  color: #332106;
  line-height: 1.7;
  margin: 0;
  padding-bottom: 28px;
  max-width: 760px;
}

/* ─ Compounds as grid (formula / tier cards) ─ */
.pt-compounds--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.pt-compounds--grid .pt-compound { background: #fff; }
.pt-section--white .pt-compounds--grid .pt-compound,
.pt-section--white .pt-compound { background: var(--cream); }

/* ─ Soft-UI depth + hover lift (quality polish) ─ */
.pt-compound,
.pt-card,
.pt-step {
  box-shadow: 0 4px 24px rgba(51,33,6,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pt-compound:hover,
.pt-card:hover,
.pt-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(51,33,6,.10);
}

/* ─ Bold-lead checklist (Label — value) ─ */
.pt-checklist li strong { color: #226040; font-weight: 600; }

/* ─ Centered intro block (single-column "what is") ─ */
.pt-prose { max-width: 820px; margin: 0 auto; text-align: center; }

/* ─ Responsive ─ */
@media (max-width: 1024px) {
  .pt-compounds--grid { grid-template-columns: repeat(2, 1fr); }
  .pt-hero { padding: 0 0 80px; }
  .pt-hero__inner { padding: 0 80px; }
  .pt-container { padding: 0 80px; }
  .pt-h { font-size: 40px; }
  .pt-cards { grid-template-columns: repeat(2, 1fr); }
  .pt-steps { grid-template-columns: repeat(3, 1fr); }
  .pt-two-col { gap: 48px; }
  .pt-section { padding: 80px 0; }
}
@media (max-width: 767px) {
  .pt-hero { min-height: 0; padding: 80px 0; }
  .pt-hero__inner { flex-direction: column; gap: 0; padding: 0 20px; }
  .pt-hero__heading-col,
  .pt-hero__text-col { flex: none; width: 100%; }
  .pt-hero__h { font-size: 40px; margin: 10px 0 20px; }
  .pt-hero__sub { font-size: 18px; }
  .pt-container { padding: 0 20px; }
  .pt-section { padding: 60px 0; }
  .pt-intro { padding: 48px 0; }
  .pt-h { font-size: 32px; }
  .pt-h--center { margin-bottom: 40px; }
  .pt-cards { grid-template-columns: 1fr; gap: 16px; }
  .pt-steps { grid-template-columns: 1fr; gap: 16px; }
  .pt-two-col { flex-direction: column; gap: 32px; }
  .pt-two-col__right { padding-top: 0; }
  .pt-checklist--two-col { grid-template-columns: 1fr; }
  .pt-compounds--grid { grid-template-columns: 1fr; }
  .pt-faq__q { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .pt-compound, .pt-card, .pt-step { transition: none; }
  .pt-compound:hover, .pt-card:hover, .pt-step:hover { transform: none; }
}
