/* ============================================================
   FFS — SURGICAL FEMINIZATION PAGE
   Page-specific styles. Shared base (tokens, nav, breadcrumb,
   footer, typography) is in main.css — not repeated here.
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hero-proc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 68vh;
  border-bottom: 0.5px solid var(--surface-alt);
}

.hero-left {
  padding: 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proc-category {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.proc-category::before {
  content: '';
  width: 24px;
  height: 0.5px;
  background: var(--accent);
  display: block;
}

.proc-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 1.4rem;
}
.proc-h1 em { font-style: italic; color: var(--accent); }

.proc-tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 460px;
}

.hero-right {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-note {
  background: var(--accent);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.hn-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--inv-text);
  line-height: 1.55;
  flex: 1;
}

.hn-sub {
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.65);
  margin-top: 5px;
}

.piezo-badge {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--inv-text);
  border: 0.5px solid rgba(247,243,238,0.4);
  padding: 5px 11px;
  border-radius: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   CONTENT LAYOUT — 2fr / 1fr
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-top: 0.5px solid var(--surface-alt);
}

.content-main {
  padding: 5.5rem 4rem;
  border-right: 0.5px solid var(--surface-alt);
}

.content-side { padding: 3rem 2rem; }

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.sec-eye {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.sec-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.35rem;
}
.sec-h2 em { font-style: italic; color: var(--accent); }

.body-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-secondary);
  margin-bottom: 1.35rem;
  max-width: 640px;
}

.section-block { margin-bottom: 5rem; }
.section-block:last-child { margin-bottom: 0; }

/* ============================================================
   TECHNIQUE / CALLOUT BLOCK
   ============================================================ */
.technique-block {
  background: var(--surface);
  border-left: 2px solid var(--accent);
  padding: 1.95rem 2.1rem;
  margin: 2.5rem 0;
  max-width: 640px;
}

.tb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.tb-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================================
   PLANNING FRAMEWORK CARDS — 2 × 2 grid
   ============================================================ */
.pw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--surface-alt);
  border: 0.5px solid var(--surface-alt);
  margin: 2rem 0;
  max-width: 640px;
}

.pw-card {
  background: var(--bg);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
}

.pw-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.pw-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.pw-divider {
  width: 24px;
  height: 0.5px;
  background: var(--accent-light);
  margin-bottom: 1rem;
}

.pw-body {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ============================================================
   ZONES — step-row pattern
   ============================================================ */
.steps-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  max-width: 640px;
}

.step-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--surface-alt);
  align-items: flex-start;
}
.step-row:last-child { border-bottom: none; }

.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.45;
  line-height: 1;
  padding-top: 2px;
}

.step-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.step-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   STAGING CARDS — 2-col
   ============================================================ */
.staging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--surface-alt);
  border: 0.5px solid var(--surface-alt);
  margin: 2rem 0;
  max-width: 640px;
}

.staging-card {
  background: var(--bg);
  padding: 2rem 1.8rem;
}

.staging-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.staging-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   RECOVERY STATS
   ============================================================ */
.recovery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--surface-alt);
  border: 0.5px solid var(--surface-alt);
  margin: 1.5rem 0;
  max-width: 640px;
}

.rec-item {
  background: var(--bg);
  padding: 1.2rem 1rem;
  text-align: center;
}

.rec-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
}

.rec-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-block { margin-top: 5rem; max-width: 640px; }

.faq-item { border-bottom: 0.5px solid var(--surface-alt); }

.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.15s;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  outline: none;
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  color: var(--accent);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.6s cubic-bezier(0.65,0,0.35,1);
  line-height: 1;
}
.faq-icon.open { transform: rotate(45deg); }

.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.65,0,0.35,1), padding-bottom 0.6s cubic-bezier(0.65,0,0.35,1);
  padding-bottom: 0;
}
.faq-a.open { padding-bottom: 1.3rem; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.side-sticky { position: sticky; top: 90px; }

.side-card {
  border: 0.5px solid var(--accent-light);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  border-radius: 1px;
  background: var(--bg);
}

.side-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.side-card-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.side-btn {
  width: 100%;
  background: var(--accent);
  color: var(--inv-text);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px;
  border: none;
  cursor: pointer;
  border-radius: 1px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.side-btn:hover { opacity: 0.88; }

.side-btn-s {
  width: 100%;
  background: transparent;
  color: var(--accent);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px;
  border: 0.5px solid var(--accent);
  cursor: pointer;
  border-radius: 1px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background 0.15s;
}
.side-btn-s:hover { background: var(--surface); }

.side-note {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 300;
  text-align: center;
  margin-top: 12px;
}

.side-stats { display: flex; flex-direction: column; margin-top: 1.5rem; }

.side-stat {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 0.5px solid var(--surface-alt);
  align-items: center;
}
.side-stat:last-child { border-bottom: none; }

.ss-key { font-size: 11px; color: var(--text-muted); font-weight: 300; }
.ss-val { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--text-primary); }

/* ============================================================
   RELATED
   ============================================================ */
.related-section {
  padding: 5rem 4rem;
  border-top: 0.5px solid var(--surface-alt);
  background: var(--surface);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--surface-alt);
  border: 0.5px solid var(--surface-alt);
  margin-top: 2rem;
}

.rel-card {
  background: var(--bg);
  padding: 1.5rem;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}
.rel-card:hover { background: var(--surface-alt); }

.rel-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.rel-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
}

.rel-arrow { color: var(--accent); font-size: 14px; margin-top: 1rem; }

/* ============================================================
   RESPONSIVE (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  .hero-proc { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 1.5rem 2rem; }
  .proc-h1 { font-size: 38px; }
  .hero-right { min-height: 50vw; }
  .hero-note { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .content-grid { grid-template-columns: 1fr; }
  .content-main { padding: 3rem 1.5rem; border-right: none; border-bottom: 0.5px solid var(--surface-alt); }
  .content-side { padding: 2rem 1.5rem; }
  .side-sticky { position: static; }
  .pw-grid { grid-template-columns: 1fr; max-width: 100%; }
  .staging-grid { grid-template-columns: 1fr; max-width: 100%; }
  .recovery-row { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .step-row { grid-template-columns: 40px 1fr; }
  .related-section { padding: 3rem 1.5rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-h2 { font-size: 28px; }
  .body-text { max-width: 100%; }
  .steps-list { max-width: 100%; }
  .technique-block { max-width: 100%; }
  .faq-block { max-width: 100%; }
}

@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr 1fr; }
  .proc-h1 { font-size: 32px; }
}
