/* BYOM — Patients page specific styles */

/* ── Treatments Section ──────────────────────────── */
.treatments-section { padding: 100px 24px; background: var(--white); }
.treatments-inner { max-width: 1040px; margin: 0 auto; }
.treatments-inner h2 {
  font-family: 'Canela', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--mid);
  margin-bottom: 32px;
}
.treatments-inner h2 em { font-style: italic; color: #F2CE18; }

/* ── Split Alternating Rows ──────────────────────── */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: -2px;
  margin-bottom: 98px;
}
.split-row:last-child { margin-bottom: 0; }
.split-row-reverse .split-row-image { order: 2; }
.split-row-reverse .split-row-text { order: 1; }

.split-row-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f0edcc 0%, #e8e4b8 100%);
  border: 1.5px dashed rgba(138,122,46,.28);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.split-img-placeholder span {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(122,120,0,.4);
}
.split-img-placeholder img {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 24px;
}

.split-row-text { display: flex; flex-direction: column; gap: 16px; }
.split-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: #F2A818;
}
.split-row-text h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 500; line-height: 1.25; letter-spacing: -0.01em;
  color: var(--text);
}
.split-row-text p {
  font-size: 16px; line-height: 1.75; color: var(--mid);
}

/* ── What to Expect ──────────────────────────────── */
.expect-section { padding: 100px 24px; background: var(--ivory); }
.expect-inner { max-width: 1040px; margin: 0 auto; }
.expect-inner h2 {
  font-family: 'Canela', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--mid);
  margin-bottom: 32px;
}
.expect-inner h2 em { font-style: italic; color: #F2CE18; }
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.expect-card {
  background: var(--white); border-radius: 20px; padding: 32px 28px;
  border: 1px solid rgba(200,197,0,.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.expect-card:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(26,26,20,0.12);
}
.expect-num {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #F2CE18; margin-bottom: 12px;
}
.expect-card h4 { font-size: 17px; font-weight: 500; margin-bottom: 10px; }
.expect-card p { font-size: 14px; line-height: 1.65; color: var(--mid); }

/* ── FAQ Section ─────────────────────────────────── */
.faq-section { padding: 100px 24px; background: var(--cream); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-inner h2 {
  font-family: 'Canela', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--mid);
  margin-bottom: 32px;
}
.faq-inner h2 em { font-style: italic; color: #F2CE18; }
.faq-box {
  background: var(--white);
  border-radius: 24px;
  padding: 8px 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,.06);
}
.faq-item {
  border-bottom: 1px solid rgba(26,26,20,.1);
  padding: 24px 0;
}
.faq-q {
  font-size: 17px; font-weight: 500; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after {
  content: '+'; font-size: 22px; font-weight: 300; color: var(--light); flex-shrink: 0;
}
.faq-a {
  font-size: 15px; line-height: 1.75; color: var(--mid);
  margin-top: 14px; display: none;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-item.open .faq-a { display: block; }

/* ── Page CTA ────────────────────────────────────── */
.page-cta { padding: 100px 24px; background: var(--yellow-pale); text-align: center; border-top: 1px solid rgba(200,197,0,.2); }
.page-cta h2 { color: var(--text); max-width: 600px; margin: 0 auto 16px; font-size: clamp(32px, 4vw, 50px); }
.page-cta h2 em { color: #F2CE18; font-style: italic; }
.page-cta p { color: var(--mid); max-width: 440px; margin: 0 auto 36px; font-size: 16px; line-height: 1.7; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .treatments-section { padding: 60px 20px; }
  .expect-section { padding: 60px 20px; }
  .faq-section { padding: 60px 20px; }
  .page-cta { padding: 60px 20px; }
  .expect-grid { grid-template-columns: 1fr; }
  .split-row, .split-row-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }
  .split-row-reverse .split-row-image { order: 0; }
  .split-row-reverse .split-row-text { order: 0; }
  .split-img-placeholder { min-height: 240px; }
  .faq-box { padding: 8px 20px; }
}

@media (max-width: 480px) {
  .treatments-section { padding: 48px 16px; }
  .expect-section { padding: 48px 16px; }
  .faq-section { padding: 48px 16px; }
  .page-cta { padding: 48px 16px; }
  .expect-card { padding: 24px 20px; }
  .split-row { margin-bottom: 48px; }
}

/* Patients page: show hero video on mobile (original design shows video, no display:none)
   opacity:1 bypasses the JS-triggered fade-in so video shows immediately
   bottom:-6px clips the grey bottom-frame artefact via overflow:hidden on .page-hero */
@media (max-width: 768px) {
  #page-hero-video { display: block !important; opacity: 1 !important; transition: none !important; bottom: -6px; }
}
