/* Page-specific styles for inner pages */

/* Page header (slim) */
.page-hero {
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-hero .crumbs {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 20px;
}
.page-hero .crumbs a { color: var(--text-mute); }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero .crumbs .sep { margin: 0 10px; color: var(--gold); }

/* Service hero */
.svc-hero { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; padding-bottom: 70px; }

/* TOC sidebar */
.toc { position: sticky; top: 110px; }
.toc h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; }
.toc ul { list-style: none; }
.toc li { padding: 10px 0; border-top: 1px solid var(--line); }
.toc li a { color: var(--text-on-ink); font-size: 14px; }
.toc li a:hover { color: var(--gold); }
.toc li:first-child { border-top: 0; }

/* Service body sections */
.svc-section { padding: 70px 0; border-top: 1px solid var(--line); }
.svc-section h3 { font-family: var(--serif); font-size: 38px; line-height: 1.1; color: var(--paper); }
.svc-section p { font-size: 17px; line-height: 1.65; color: var(--text-on-ink); max-width: 60ch; }
.svc-section .lede { margin-top: 18px; }

/* Checklist */
.checklist { list-style: none; }
.checklist li { padding: 14px 0 14px 38px; position: relative; border-bottom: 1px solid var(--line); font-size: 16px; line-height: 1.55; color: var(--text-on-ink); }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 22px;
  width: 14px; height: 1px; background: var(--gold);
}
.checklist li::after {
  content: ''; position: absolute; left: 9px; top: 18px;
  width: 6px; height: 6px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* Two-col cards */
.facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); margin-top: 30px;
}
.facts > div { padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts > div:nth-child(2n) { border-right: 0; }
.facts > div:nth-last-child(-n+2) { border-bottom: 0; }
.facts dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.facts dd { font-family: var(--serif); font-size: 22px; line-height: 1.3; color: var(--paper); margin-top: 10px; }

/* Insight cards (long form) */
.insight-row {
  display: grid; grid-template-columns: 200px 1fr 200px; gap: 40px;
  padding: 36px 0; border-bottom: 1px solid var(--line);
  align-items: start;
}
.insight-row:hover { background: rgba(245,242,234,0.02); }
.insight-row .meta { font-family: var(--mono); font-size: 11px; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; }
.insight-row h3 { font-family: var(--serif); font-size: 30px; line-height: 1.15; color: var(--paper); }
.insight-row .desc { color: var(--text-mute); margin-top: 10px; font-size: 14px; }
.insight-row .read { font-family: var(--mono); font-size: 11px; color: var(--text-mute); letter-spacing: 0.16em; text-align: right; }

/* Privacy / legal styling */
.legal { max-width: 820px; margin: 0 auto; padding: 0 var(--pad); }
.legal h2 { font-family: var(--serif); font-size: 32px; line-height: 1.2; color: var(--paper); margin-top: 56px; padding-bottom: 12px; border-bottom: 1px solid var(--gold); }
.legal h3 { font-family: var(--serif); font-size: 22px; line-height: 1.3; color: var(--paper); margin-top: 32px; }
.legal p { color: var(--text-on-ink); font-size: 16px; line-height: 1.75; margin-top: 14px; }
.legal ul { padding-left: 22px; margin-top: 14px; }
.legal li { color: var(--text-on-ink); font-size: 16px; line-height: 1.75; margin-bottom: 8px; }
.legal strong { color: var(--paper); }
.legal .meta { font-family: var(--mono); font-size: 12px; color: var(--text-mute); letter-spacing: 0.14em; }
.legal .contact-block { background: var(--ink-2); border-left: 2px solid var(--gold); padding: 22px 28px; margin: 24px 0; }
.legal .english { background: var(--ink-2); padding: 36px 36px; margin-top: 50px; border: 1px solid var(--line); }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--paper); }

/* Team avatars */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card .avatar {
  aspect-ratio: 4/5; background: var(--ink-3); border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.team-card .avatar::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(201,169,97,0.18), transparent 60%);
}
.team-card h4 { font-family: var(--serif); font-size: 24px; color: var(--paper); margin-top: 18px; }
.team-card .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin-top: 6px; }
.team-card p { font-size: 13px; line-height: 1.6; color: var(--text-mute); margin-top: 10px; }

@media (max-width: 900px) {
  .svc-hero { grid-template-columns: 1fr; }
  .insight-row { grid-template-columns: 1fr; }
  .insight-row .read { text-align: left; }
  .team-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .facts > div { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .facts > div:last-child { border-bottom: 0 !important; }
}
