/* Liz Stone - dark consulting rebuild. Headlines: Source Serif 4. Body: Karla. Labels: JetBrains Mono. */
:root {
  --bg: oklch(10.5% .014 306);
  --bg-hex: #120f16;
  --raised: oklch(15.5% .022 308);
  --ink: oklch(95.1% .009 86);
  --ink-hex: #f3efe6;
  --ink-soft: oklch(95.1% .009 86 / 0.82);
  --muted: oklch(95.1% .009 86 / 0.68);
  --line: oklch(95.1% .009 86 / 0.22);
  --line-strong: oklch(95.1% .009 86 / 0.42);
  --accent: oklch(73.5% .135 350);
  --accent-mid: oklch(60.5% .155 305);
  --accent-deep: oklch(48% .13 308);
  --grad: linear-gradient(90deg, oklch(73.5% .135 350) 0%, oklch(60.5% .155 305) 60%, oklch(33.5% .115 310) 100%);
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Karla", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  --shadow: 0 28px 60px -24px oklch(0% 0 0 / 0.55), 0 2px 10px -4px oklch(0% 0 0 / 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-hex);
  background: var(--bg);
  color: var(--ink-hex);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, .serif, .wordmark {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5.4vw, 4.25rem); margin: 0; }
h2 { font-size: clamp(1.75rem, 4.2vw, 3.4rem); margin: 0; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); margin: 0; font-weight: 500; }

.wrap { width: min(1120px, calc(100% - 2.5rem)); margin: 0 auto; }
.wrap-s { width: min(760px, calc(100% - 2.5rem)); margin: 0 auto; }

.eyebrow, .mono, .label, nav a, .btn, .btn-quiet, .price, .index, .status, .figcap {
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow {
  font-size: 0.5625rem;
  letter-spacing: 0.34em;
  color: var(--muted);
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--ink);
  flex-shrink: 0;
}
.eyebrow.plain::before { display: none; }
.index {
  display: block;
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.lede { font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.35; max-width: 36rem; }
.soft { color: var(--ink-soft); }
.muted { color: var(--muted); }

.wordmark {
  text-decoration: none;
  white-space: nowrap;
  line-height: 0.9;
  letter-spacing: -0.012em;
}
.wordmark em { font-style: italic; font-weight: 500; }
.wordmark-lg { font-size: clamp(2.6rem, 7vw, 4.5rem); }
.wordmark-sm { font-size: 1.6rem; }
.wordmark-md { font-size: 2rem; }
.tagline {
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.7rem;
}

.site-header { border-bottom: 1px solid var(--line); }
.site-header .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--ink);
}
.site-header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.5rem;
}
.site-header nav a {
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  text-decoration: none;
  color: var(--muted);
  background-image: var(--grad);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  padding-bottom: 0.2rem;
  transition: background-size 0.3s ease, color 0.3s;
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: var(--ink);
  background-size: 100% 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  padding: 1.1rem 2rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: scaleX(1); }
.btn-quiet {
  display: inline-flex;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  font-size: 0.625rem;
  padding: 0 0 0.3rem;
}
.btn-quiet:hover { color: var(--accent); border-bottom-color: var(--accent); }

.hero { padding: 4.5rem 0 3rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem 3rem;
  align-items: start;
}
.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  padding-top: 0.8rem;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 3rem;
  margin: 2rem 0 0;
}
.stats dt {
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.4rem;
}
.stats dd {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: none;
  margin: 0;
}
.actions { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; margin-top: 2.2rem; }
.hero-copy { margin-top: 2.4rem; max-width: 36rem; }
@media (min-width: 900px) { .hero-copy { margin-left: 3.5rem; } }

.plate {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  filter: grayscale(0.75) contrast(1.06);
  box-shadow: var(--shadow);
  background: var(--raised);
}
.plate:hover { filter: grayscale(0.25) contrast(1.03); }
.plate-wrap { position: relative; }
.plate-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--grad);
}
.aside-notes {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink);
}
.aside-notes p {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
}
.status-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 0 2.5rem;
}
.status-row .rule { flex: 1; height: 1px; background: var(--line); }
.status {
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}

section { padding: 4.5rem 0; }
.band { border-top: 1px solid var(--line); }
.rule-top { border-top: 1px solid var(--ink); }

.blame { list-style: none; margin: 0; padding: 0; }
.blame li { padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.blame li:first-child { border-top: 1px solid var(--line); }
.blame strong { display: block; font-family: var(--sans); font-weight: 500; }
.blame span { display: block; margin-top: 0.35rem; color: var(--ink-soft); }

.split { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.5rem 3rem; align-items: start; }

.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 2rem; margin-top: 1.4rem; }
.reason {
  display: block;
  text-decoration: none;
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
  color: inherit;
}
.reason:hover { border-top-color: var(--ink); }
.reason h3 { margin: 0.7rem 0 0.55rem; }
.reason p { font-size: 0.9rem; color: var(--ink-soft); }
.reason .btn-quiet { margin-top: 0.9rem; }
.reason-wide { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; align-items: flex-end; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.4rem; }
.step { border-top: 1px solid var(--ink); padding-top: 1.3rem; }
.step .head { display: flex; align-items: baseline; gap: 0.75rem; }
.step h3 { font-size: 2rem; }
.step p { margin-top: 1rem; color: var(--ink-soft); }

.jobs { margin-top: 2.4rem; border-top: 1px solid var(--ink); }
.job {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem 2.5rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.job .price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: none;
  text-align: right;
  white-space: nowrap;
  color: var(--ink);
}
.job .btn-quiet { margin-top: 0.9rem; }
.note { margin-top: 1.6rem; color: var(--ink-soft); max-width: 44rem; }

.contact {
  background: var(--raised);
  background-image: linear-gradient(180deg, oklch(15.5% .022 308) 0%, oklch(10.5% .014 306) 100%);
  border-top: 3px solid transparent;
  border-image: var(--grad) 1;
}
.contact h2 { color: var(--ink); }

form.triage { display: grid; gap: 1.25rem; margin-top: 2rem; max-width: 40rem; }
.fields-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label { display: block; }
label span {
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
input, select, textarea {
  width: 100%;
  margin-top: 0.45rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.7rem 0;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-bottom-color: var(--accent); }
textarea { min-height: 9rem; resize: vertical; }
select option { color: #120f16; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.25rem; }
.legal-note { font-size: 0.9rem; color: var(--muted); }
.legal-note a { color: var(--ink); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 2.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem 2rem;
}
.site-footer .brand { font-family: var(--serif); color: var(--ink); font-size: 1.05rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 0.55rem 1.2rem; }
.site-footer nav a { text-decoration: none; color: var(--ink-soft); }
.site-footer nav a:hover { color: var(--ink); }
.site-footer .disc { max-width: 44rem; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }

.inner-page { padding: 3.4rem 0 4rem; }
.inner-page .lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 40rem; }
.about-photo {
  width: min(22rem, 100%);
  margin: 2.4rem auto 0.7rem;
}
.about-photo img { aspect-ratio: 3 / 4; object-fit: cover; object-position: top; }
.figcap {
  text-align: center;
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 2.4rem;
}
.prose { max-width: 40rem; }
.prose p { margin: 0 0 1.15rem; color: var(--ink-soft); font-size: 1.08rem; }
.prose p.strong { color: var(--ink); }
.checklist { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.4rem; }
.checklist li {
  padding-left: 1.1rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.6rem;
  height: 1px;
  background: var(--ink);
}

.stack { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.stack li {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 1.2fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.stack li strong { font-weight: 500; color: var(--ink); }
.stack li span { color: var(--ink-soft); }

.legal-page h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.legal-page .prose { margin-top: 2rem; }

.house {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 3rem 0 0;
}
.house .rule { flex: 1; height: 1px; background: var(--grad); }

.grad-bar { height: 3px; background: var(--grad); width: 100%; }

@media (max-width: 860px) {
  .hero { padding: 2.6rem 0 1.6rem; }
  .hero-grid, .split, .reasons, .steps, .fields-2, .job, .checklist, .stack li {
    grid-template-columns: 1fr;
  }
  .job .price { text-align: left; white-space: normal; }
  .site-header .inner { align-items: flex-start; }
}
