/* =============================================================
   empirical.css — The Made Self · Empirical Inquiry index
   Styles for inquiry/empirical.html.
   Requires shared.css + index.css to be loaded first.
   ============================================================= */

/* --pad defined in shared.css */

/* ── Inquiry hero ────────────────────────────────────────────── */
.inquiry-hero {
  padding: 100px var(--pad) 60px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(120px, 18%) 1fr;
  gap: 0 8vw;
}

.inquiry-hero-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 6px;
}

.inquiry-hero-body {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  line-height: 1.85;
  color: var(--text);
}
.inquiry-hero-body p + p { margin-top: 1.4em; }
.inquiry-hero-body em    { color: var(--accent); font-style: italic; }

/* ── Convergence canvas ──────────────────────────────────────── */
.canvas-wrap {
  width: 100%;
  height: min(100dvh, 140vw);
  overflow: hidden;
}
#convergence-root {
  width: 100%;
  height: 100%;
}

/* ── Philosophy link band ────────────────────────────────────── */
.philosophy-band {
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 80px var(--pad);
  display: grid;
  grid-template-columns: minmax(120px, 18%) 1fr;
  gap: 0 8vw;
}

.philosophy-band-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 6px;
}

.philosophy-band-body {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  line-height: 1.85;
  color: var(--text);
}
.philosophy-band-body p + p { margin-top: 1.4em; }
.philosophy-band-body em    { color: var(--accent); font-style: italic; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .inquiry-hero,
  .philosophy-band    { grid-template-columns: 1fr; gap: 24px 0; }
  .canvas-wrap        { height: auto; min-height: 60vh; overflow: visible; }
}
