/*
 * Welker Law Offices — public site styles.
 *
 * Translated from the counsel.jsx mockup. Editorial law-journal aesthetic:
 * Cormorant Garamond display, Source Serif 4 body, generous margins,
 * restrained gold as accent only, cream paper backgrounds, navy ink.
 */

:root {
  --navy: #0a1d54;
  --navy-deep: #061538;
  --gold: #c89a3c;
  --gold-bright: #e8c66a;
  --gold-deep: #a37a22;
  --cream: #fbf7ec;
  --cream-soft: #f7f1e3;
  --paper: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --rule: rgba(15, 42, 120, 0.18);
  --rule-soft: rgba(15, 42, 120, 0.12);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ---------- Typography ---------- */

.eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow--with-rule::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  margin: 0;
}

.h-display {
  font-weight: 500;
  font-size: 72px;
  line-height: 1.04;
  letter-spacing: -0.5px;
}

.h-page {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.h-section {
  font-weight: 500;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.h-subsection {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.3px;
}

.h-card {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.2px;
}

.lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
}

.body-large {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------- Layout helpers ---------- */

.container { max-width: 1180px; margin: 0 auto; padding: 0 56px; }

.section-pad { padding: 72px 56px; }
.section-pad-lg { padding: 80px 56px 56px; }
.section-pad-tight { padding: 56px 56px 88px; }

.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-cream-soft { background: var(--cream-soft); }

.rule-top { border-top: 1px solid var(--rule); }
.rule-bottom { border-bottom: 1px solid var(--rule); }

.grid-2 { display: grid; gap: 56px; align-items: center; }
.grid-2-15-1 { grid-template-columns: 1.5fr 1fr; }
.grid-2-1-2 { grid-template-columns: 1fr 2fr; }
.grid-2-1-14 { grid-template-columns: 1fr 1.4fr; }

/* ---------- Header / nav ---------- */

.site-header {
  background: rgba(251, 247, 236, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  padding: 20px 56px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 5;
}

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.2px;
  line-height: 1.05;
}
.brand-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 2px;
}

.nav { display: flex; gap: 28px; align-items: center; }
.nav a:not(.btn-cta) {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.nav a:not(.btn-cta):hover { color: var(--navy); }
.nav a.active { color: var(--navy); border-bottom-color: var(--gold); }

.btn-cta {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--gold-bright);
  padding: 10px 18px;
  border: 1px solid var(--navy);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-cta:hover { color: var(--cream); }
.btn-cta--ghost {
  background: transparent;
  color: var(--navy);
}
.btn-cta--ghost:hover { color: var(--navy); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 56px 56px 32px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(247, 241, 227, 0.18);
}
.footer-mast {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-blurb { color: rgba(247, 241, 227, 0.7); max-width: 320px; }
.footer-h {
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.footer-list { color: rgba(247, 241, 227, 0.85); }
.footer-list a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 1px 0;
  transition: color 0.15s;
}
.footer-list a:hover { color: var(--gold-bright); }
.footer-bar {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: rgba(247, 241, 227, 0.55);
  font-size: 11px;
  letter-spacing: 0.4px;
}
.footer-bar .motto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
}

/* ---------- Home: hero ---------- */

.hero {
  padding: 56px 56px 64px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.hero h1 em { color: var(--gold-deep); font-style: italic; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; }
.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 48px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-label { color: var(--ink-soft); margin-top: 6px; letter-spacing: 0.3px; }

.hero-portrait {
  position: relative;
  max-width: 420px;
  justify-self: end;
  width: 100%;
}
.hero-portrait::before {
  content: "";
  position: absolute;
  top: -16px; left: -16px; right: 24px; bottom: 24px;
  border: 1px solid var(--gold);
}
.hero-portrait img {
  width: 100%;
  position: relative;
  filter: saturate(0.92);
}
.hero-portrait-card {
  position: absolute;
  bottom: -24px;
  left: 16px;
  right: 40px;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 22px;
  font-family: 'Cormorant Garamond', serif;
}
.hero-portrait-card .name { font-size: 22px; font-weight: 600; letter-spacing: 0.2px; }
.hero-portrait-card .title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 4px;
}

/* ---------- Home: pillars ---------- */

.pillars {
  padding: 72px 56px;
  background: var(--paper);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.pillars-head { text-align: center; margin-bottom: 56px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-soft);
}
.pillar { padding: 44px 36px; }
.pillar + .pillar { border-left: 1px solid var(--rule-soft); }
.pillar .roman {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* ---------- Home: practice areas TOC ---------- */

.areas { padding: 72px 56px; }
.areas-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; }
.areas-list { }
.area-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.area-row:last-child { border-bottom: 1px solid var(--rule); }
.area-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-size: 18px;
}
.area-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: 0.2px;
}
.area-blurb { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
.area-arrow { width: 22px; height: 22px; color: var(--gold); }

/* ---------- Home: pull quote ---------- */

.pullquote {
  padding: 96px 56px;
  background: var(--navy);
  color: var(--cream);
  text-align: center;
}
.pullquote-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 32px;
}
.pullquote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.2;
  max-width: 880px;
  margin: 0 auto;
  letter-spacing: -0.2px;
}
.pullquote blockquote em { color: var(--gold-bright); font-style: italic; }
.pullquote .attribution {
  margin-top: 36px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247, 241, 227, 0.7);
}

/* ---------- Home: journal preview ---------- */

.journal-preview {
  padding: 72px 56px;
  background: var(--paper);
}
.journal-preview-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}
.journal-preview-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.journal-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.journal-card {
  border-top: 1px solid var(--navy);
  padding-top: 20px;
  text-decoration: none;
  color: inherit;
  display: block;
}
.journal-card-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.journal-card h3 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: 0.1px;
}
.journal-card-read {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- Mission ---------- */

.mission-hero {
  padding: 80px 56px 56px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  border-bottom: 1px solid var(--rule);
}
.mission-body {
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}
.mission-figure { margin: 0; position: sticky; top: 110px; align-self: start; }
.mission-figure figcaption {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.5;
}
.mission-figure figcaption b { color: var(--navy); }
.credentials-card {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid var(--rule);
}
.credentials-card .h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.credentials-card .body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.5;
}
.credentials-card .body .bar { margin-top: 8px; font-style: italic; color: var(--ink-soft); font-size: 14px; }

.mission-prose { font-size: 17px; line-height: 1.75; color: var(--ink); }
.mission-prose p { margin-top: 0; }
.dropcap::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 76px;
  line-height: 0.85;
  color: var(--gold);
  float: left;
  padding-right: 10px;
  padding-top: 6px;
}
.mission-prose h2 {
  font-weight: 500;
  font-size: 32px;
  margin: 48px 0 16px;
  letter-spacing: -0.2px;
}
.mission-list { padding-left: 0; list-style: none; margin: 24px 0; }
.mission-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
}
.mission-list .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.mission-close {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  margin-top: 32px;
}

/* ---------- Services ---------- */

.services-hero {
  padding: 80px 56px 48px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.services-grid {
  padding: 64px 56px;
}
.services-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.service-cell {
  background: var(--cream);
  padding: 36px 36px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.service-cell:hover { background: var(--paper); }
.service-cell:hover h3 { color: var(--gold-deep); }
.service-cell .icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--navy);
}
.service-cell .icon svg { width: 24px; height: 24px; }
.service-cell h3 { margin-bottom: 8px; }
.service-cell p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

.themis-cta {
  padding: 64px 56px 88px;
  background: var(--paper);
  border-top: 1px solid var(--rule-soft);
}
.themis-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
}
.themis-cta img { width: 100%; max-width: 280px; justify-self: center; }
.themis-cta h2 { margin-bottom: 18px; }
.themis-cta p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 28px; max-width: 540px; }
.themis-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Fees ---------- */

.fees-hero {
  padding: 80px 56px 56px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}
.fees-hero p { align-self: end; }

.fees-grid {
  padding: 64px 56px;
}
.fees-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fee-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 36px 36px 32px;
  position: relative;
}
.fee-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}
.fee-card h3 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}
.fee-card p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

.howitworks {
  padding: 56px 56px 88px;
  background: var(--navy);
  color: var(--cream);
}
.howitworks h2 {
  color: var(--cream);
  font-weight: 500;
  font-size: 44px;
  margin: 0 0 48px;
  letter-spacing: -0.3px;
  line-height: 1.1;
  max-width: 720px;
}
.howitworks .eyebrow { color: var(--gold-bright); margin-bottom: 14px; }
.howitworks-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.howitworks-step {
  border-left: 1px solid rgba(232, 198, 106, 0.35);
  padding: 0 24px;
}
.howitworks-step .n {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 14px;
}
.howitworks-step .t {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 10px;
}
.howitworks-step .b {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(247, 241, 227, 0.78);
}

/* ---------- Contact ---------- */

.contact-hero {
  padding: 80px 56px 48px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}
.contact-hero p { align-self: end; font-size: 18px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

.contact-body {
  padding: 56px 56px 88px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}
.contact-direct {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 32px;
}
.contact-direct .h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.contact-row { padding-bottom: 20px; border-bottom: 1px solid var(--rule-soft); margin-bottom: 20px; }
.contact-row:last-child { padding-bottom: 0; border-bottom: none; margin-bottom: 0; }
.contact-row .label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-row .value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.2px;
}
.contact-row .value--md { font-size: 20px; font-weight: 500; }
.contact-row .value--sm { font-size: 18px; font-weight: 500; }
.contact-row .hours { font-size: 14px; color: var(--ink); line-height: 1.7; }

.contact-confidentiality {
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--navy);
  color: var(--cream);
}
.contact-confidentiality .h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 10px;
}
.contact-confidentiality p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  color: rgba(247, 241, 227, 0.85);
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 40px;
}
.contact-form .eyebrow { margin-bottom: 14px; color: var(--gold-deep); }
.contact-form h2 {
  font-weight: 500;
  font-size: 32px;
  margin: 0 0 28px;
  letter-spacing: -0.2px;
}
.field-row { display: grid; gap: 20px; margin-bottom: 20px; }
.field-row-2 { grid-template-columns: 1fr 1fr; }
.field label {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 0;
  outline: none;
  box-sizing: border-box;
}
.field textarea { resize: vertical; }
.checkbox-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.checkbox-row label {
  border: 1px solid var(--rule);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  margin: 0;
}
.checkbox-row input { accent-color: var(--gold); width: auto; }

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}
.form-footer .note {
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Service detail page ---------- */

.service-hero {
  padding: 80px 56px 48px;
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
}
.service-hero-inner { max-width: 1180px; margin: 0 auto; }

.service-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  padding: 56px 56px 72px;
  max-width: 1180px;
  margin: 0 auto;
}
.service-prose {
  font-size: 18px;
  line-height: 1.78;
  color: var(--ink);
  max-width: 720px;
}
.service-prose > p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 84px;
  line-height: 0.85;
  color: var(--gold);
  float: left;
  padding-right: 12px;
  padding-top: 8px;
}
.service-prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--navy);
  margin: 44px 0 14px;
  letter-spacing: -0.2px;
}
.service-prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  margin: 32px 0 10px;
}
.service-prose blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.5;
}
.service-prose ul {
  padding-left: 0;
  list-style: none;
  margin: 20px 0;
}
.service-prose ul li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  padding: 8px 0;
}
.service-prose ul li::before {
  content: "§";
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.service-rail { display: flex; flex-direction: column; gap: 20px; }
.service-rail-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 24px 28px;
}
.service-rail-card--quiet {
  background: var(--cream-soft);
}
.service-rail-card .h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.service-rail-card p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.service-rail-post {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 12px 0;
  border-top: 1px solid var(--rule-soft);
}
.service-rail-post:first-of-type { border-top: none; padding-top: 0; }
.service-rail-post .post-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.service-rail-post .post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.3;
}
.service-rail-link {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.6px;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 0;
  border-top: 1px solid var(--rule-soft);
}
.service-rail-link:first-of-type { border-top: none; padding-top: 0; }
.service-rail-link:hover { color: var(--gold-deep); }

.service-footer-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 72px 56px;
}
.service-footer-cta-inner { max-width: 1180px; margin: 0 auto; }

/* ---------- Journal index ---------- */

.journal-hero {
  padding: 80px 56px 48px;
  border-bottom: 1px solid var(--rule);
}
.journal-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
  margin-top: 18px;
}

.journal-list {
  padding: 32px 56px 88px;
}
.journal-row {
  display: grid;
  grid-template-columns: 180px 1fr 100px;
  gap: 36px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}
.journal-row .meta {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.journal-row .meta .tag { color: var(--navy); font-weight: 600; }
.journal-row .meta .date { margin-top: 4px; }
.journal-row h3 {
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: 0.1px;
}
.journal-row p { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.journal-row .read {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  text-align: right;
}

/* ---------- Article ---------- */

.article-header {
  padding: 72px 56px 48px;
  border-bottom: 1px solid var(--rule);
  max-width: 920px;
  margin: 0 auto;
}
.article-header .meta {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.article-header .back { color: var(--navy); text-decoration: none; }
.article-header .meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.article-header h1 {
  font-weight: 500;
  font-size: 56px;
  margin: 0 0 22px;
  letter-spacing: -0.6px;
  line-height: 1.08;
}
.article-header .deck {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 760px;
}
.article-header .byline {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--rule-soft);
}
.byline-pic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy);
}
.byline-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
}
.byline-meta {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
}

.article-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  padding: 56px 56px 88px;
  max-width: 1120px;
  margin: 0 auto;
}
.toc { position: sticky; top: 110px; align-self: start; }
.toc .h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.8;
}
.toc li {
  border-left: 1px solid var(--rule);
  padding: 4px 12px;
  color: var(--ink-soft);
}
.toc a { text-decoration: none; color: inherit; }

.article-prose {
  font-size: 18px;
  line-height: 1.78;
  color: var(--ink);
  max-width: 680px;
}
.article-prose > p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 84px;
  line-height: 0.85;
  color: var(--gold);
  float: left;
  padding-right: 12px;
  padding-top: 8px;
}
.article-prose h2 {
  font-weight: 500;
  font-size: 32px;
  color: var(--navy);
  margin: 44px 0 14px;
  letter-spacing: -0.2px;
}
.article-prose h3 {
  font-weight: 600;
  font-size: 22px;
  margin: 32px 0 10px;
}
.article-prose blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.5;
}
.article-prose ul {
  padding-left: 0;
  list-style: none;
  margin: 20px 0;
}
.article-prose ul li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  padding: 8px 0;
}
.article-prose ul li::before {
  content: "§";
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.article-cta {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 28px 32px;
  margin: 48px 0;
}
.article-cta .h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.article-cta .body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.35;
}

.article-disclaimer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}

.related {
  background: var(--cream);
  padding: 64px 56px;
  border-top: 1px solid var(--rule);
}
.related-inner { max-width: 1120px; margin: 0 auto; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero, .pillars-grid, .areas-grid, .journal-preview-grid,
  .mission-hero, .mission-body, .services-grid-inner,
  .themis-cta-grid, .fees-hero, .fees-grid-inner, .contact-hero,
  .contact-body, .article-body, .related-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pillars-grid, .services-grid-inner { grid-template-columns: 1fr; }
  .pillar + .pillar { border-left: none; border-top: 1px solid var(--rule-soft); }
  .howitworks-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .nav { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .h-display { font-size: 48px; }
  .h-page { font-size: 44px; }
  .h-section, .h-subsection { font-size: 32px; }
  .article-prose { font-size: 17px; }
  .toc { display: none; }
  .article-body { grid-template-columns: 1fr; padding: 32px 24px 56px; }
  .service-body { grid-template-columns: 1fr; padding: 32px 24px 56px; }
  .service-hero, .service-footer-cta { padding-left: 24px; padding-right: 24px; }
  .article-header h1 { font-size: 40px; }
  .pullquote blockquote { font-size: 32px; }
  .site-header, .section-pad, .section-pad-lg, .section-pad-tight,
  .hero, .pillars, .areas, .pullquote, .journal-preview,
  .mission-hero, .mission-body, .services-hero, .services-grid,
  .themis-cta, .fees-hero, .fees-grid, .howitworks, .contact-hero,
  .contact-body, .journal-hero, .journal-list { padding-left: 24px; padding-right: 24px; }
  .footer-bar { flex-direction: column; gap: 8px; }
  .journal-row { grid-template-columns: 1fr; gap: 8px; }
  .journal-row .read { text-align: left; }
}
