/* =============================================================
   Golden Slacks — editorial / cream-paper system
   Distinct from lil-ledger (dark/amber/sans). Light. Serif.
   Long horizontal hairlines. Magazine-style asymmetric grids.
   ============================================================= */

:root {
  /* This site is intentionally a light theme. Opt out of browser
     "auto dark mode" (Chrome force-dark, etc.) so paper stays cream
     and ink stays navy instead of being algorithmically inverted. */
  color-scheme: light;

  /* paper + ink */
  --paper:      #f3ecd8;       /* warm cream background */
  --paper-2:    #ebe2c9;       /* tonal block */
  --paper-3:    #e3d9bd;       /* deeper tonal */
  --ink:        #0c1a2c;       /* deep navy */
  --ink-2:      #1a2a40;
  --ink-soft:   #2a3a52;

  /* accents */
  --gold:       #a07f33;       /* matte aged gold */
  --gold-bright:#c8a85a;
  --gold-deep:  #6f5722;
  --burgundy:   #6e2a3f;       /* used sparingly */

  /* hairlines, mute */
  --rule:       #c2b07d;
  --rule-soft:  #d6c794;
  --mute:       #6c604a;
  --mute-2:     #8a7d61;

  /* type */
  --display: "Fraunces", "GT Sectra", "Iowan Old Style", Georgia, serif;
  --body:    "Newsreader", "Source Serif Pro", "Iowan Old Style", Georgia, serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 380;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-variant-numeric: oldstyle-nums proportional-nums;
  /* hairline pinstripe paper texture */
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0 6px,
      rgba(160, 127, 51, 0.014) 6px 7px
    ),
    radial-gradient(1200px 600px at 100% -10%, rgba(160, 127, 51, 0.06), transparent 70%),
    radial-gradient(900px 500px at -10% 100%, rgba(110, 42, 63, 0.04), transparent 70%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* selection in burgundy */
::selection { background: var(--burgundy); color: var(--paper); }

/* shared headings */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-feature-settings: "ss01", "ss02";
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

p { hanging-punctuation: first last; }

/* ---------- quiet bar (replaces alert strip) ---------- */
.quiet-bar {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 16px;
  padding: 14px 32px 12px;
  background: transparent;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--mute);
  text-align: center;
}
.quiet-bar .qb-label {
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.quiet-bar .qb-body {
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--ink);
}
.quiet-bar .qb-body em { font-style: italic; color: var(--ink); }
.quiet-bar .qb-rule {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--rule);
  vertical-align: middle;
}
.quiet-bar .qb-aside {
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--mute);
}
.quiet-bar a {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(110, 42, 63, 0.35);
  padding-bottom: 1px;
}
.quiet-bar a:hover { border-bottom-color: var(--burgundy); }
@media (max-width: 720px) {
  .quiet-bar { font-size: 11px; padding: 12px 18px; }
  .quiet-bar .qb-rule { display: none; }
}

/* ---------- masthead / nav ---------- */
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 56px 22px;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(243, 236, 216, 0.93);
  backdrop-filter: blur(8px);
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1;
}
.wm-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 600;
  font-style: italic;
}
.wm-divider {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-5px);
}
.wm-sub {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.nav {
  display: flex;
  gap: 32px;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.nav a {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--burgundy); }
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--burgundy);
}

/* ---------- overture (hero) ---------- */
.overture {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  padding: 96px 56px 88px;
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.overture::before {
  /* gold pinstripe column behind text */
  content: "";
  position: absolute;
  left: 56px; top: 96px;
  width: 1px; height: calc(100% - 184px);
  background: var(--gold);
  opacity: 0.55;
}
.overture-text { padding-left: 28px; }
.dateline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 36px;
}
h1 {
  font-size: clamp(40px, 5.6vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  margin-bottom: 36px;
  max-width: 16ch;
  overflow-wrap: break-word;
  hyphens: none;
}
.h1-line { display: block; }
.h1-line.accent {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400;
}
.lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: 32px;
  font-weight: 380;
}
.dropcap {
  float: left;
  font-family: var(--display);
  font-size: 70px;
  line-height: 0.85;
  font-weight: 500;
  color: var(--gold);
  padding: 8px 12px 0 0;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 500;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 0;
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.08s ease;
  cursor: pointer;
}
.btn .btn-arrow {
  transition: transform 0.18s ease;
  font-family: var(--body);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn.primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.btn.primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn.ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.micro {
  font-size: 12.5px;
  color: var(--mute);
  max-width: 60ch;
  line-height: 1.55;
  font-style: italic;
}
.disclaimer { margin-top: 8px; }

/* hero seal — the logo as a wax seal in a frame */
.seal {
  position: sticky;
  top: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: end;
  margin-top: 42px;
}
.seal-frame {
  background: var(--ink);
  padding: 16px;
  border: 1px solid var(--rule);
  box-shadow:
    0 1px 0 var(--paper) inset,
    0 30px 60px -28px rgba(12, 26, 44, 0.45),
    0 0 0 1px var(--rule);
  max-width: 320px;
  position: relative;
}
.seal-frame::before,
.seal-frame::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--rule-soft);
  pointer-events: none;
}
.seal-frame::after {
  inset: -16px;
  border-color: rgba(160, 127, 51, 0.4);
}
.seal-frame img {
  display: block;
  max-width: 100%;
  height: auto;
}
.seal figcaption {
  margin-top: 28px;
  text-align: center;
  font-family: var(--mono);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seal-est {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}
.seal-year {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ---------- horizontal rule between sections ---------- */
.rule {
  height: 0;
  border-top: 1px solid var(--rule);
  margin: 0 56px;
  position: relative;
}
.rule::before, .rule::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.rule::before { left: 50%; transform: translateX(-50%); }
.rule::after  { display: none; }

/* ---------- generic section ---------- */
section.firm,
section.leadership,
section.practice,
section.letter,
section.simcfo,
section.contact {
  padding: 96px 56px;
  max-width: 1320px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-soft);
}
.section-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.section-head h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section-lede {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 60ch;
  margin-bottom: 56px;
  line-height: 1.7;
}
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

/* ---------- firm ---------- */
.firm-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.firm-prose p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 56ch;
}
.figures {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-soft);
}
.fig {
  padding: 22px 4px 18px;
  border-bottom: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  position: relative;
}
.fig dt {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.4;
}
.fig dd {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-feature-settings: "tnum";
  line-height: 1;
}

/* ---------- leadership ---------- */
.leadership-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.portrait {
  position: sticky;
  top: 128px;
  display: flex;
  flex-direction: column;
  max-width: 340px;
  width: 100%;
}
.portrait-frame {
  background: #9bb0d6;
  padding: 22px;
  border: 1px solid var(--rule);
  box-shadow:
    0 1px 0 var(--paper) inset,
    0 30px 60px -28px rgba(12, 26, 44, 0.4);
  position: relative;
}
.portrait-frame::after {
  /* engraved-frame ring */
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--rule);
  pointer-events: none;
}
.portrait-frame img {
  /* keep her pixel art crisp */
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  width: 100%;
  height: auto;
  display: block;
}
.portrait figcaption {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--rule-soft);
}
.cap-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin-bottom: 6px;
}
.cap-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.cap-meta {
  font-size: 13px;
  color: var(--mute);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
}
.cap-dot { color: var(--gold); }

.bio p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 58ch;
}
.bio blockquote {
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: rgba(160, 127, 51, 0.06);
  position: relative;
}
.bio blockquote p {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 72, "SOFT" 100;
}
.bio blockquote cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--mute);
}

/* ---------- practice ---------- */
.services {
  list-style: none;
  border-top: 1px solid var(--rule);
}
.services li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  padding: 32px 4px 30px;
  border-bottom: 1px solid var(--rule-soft);
  transition: background 0.15s ease;
}
.services li:hover { background: rgba(160, 127, 51, 0.045); }
.srv-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  padding-top: 8px;
}
.services h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.01em;
}
.services p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
  max-width: 70ch;
}

/* ---------- letter / memos ---------- */
.memos {
  list-style: none;
  border-top: 1px solid var(--rule);
  margin-top: 8px;
}
.memos li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px 32px;
  padding: 30px 4px 26px;
  border-bottom: 1px solid var(--rule-soft);
}
.memo-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 8px;
  grid-column: 1 / -1;
}
.memo-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  font-variation-settings: "opsz" 72, "SOFT" 100;
  min-width: 28px;
}
.memos h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.01em;
}
.memos > li > p {
  grid-column: 1;
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 68ch;
  padding-left: 46px;
}
.memo-len {
  grid-column: 2;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--mute);
  letter-spacing: 0.08em;
  padding-top: 6px;
}

.distribution {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--rule-soft);
}
.dist-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.distribution > span:last-child {
  font-family: var(--body);
  font-size: 15px;
  color: var(--mute);
  font-style: italic;
}

/* ---------- simcfo callout ---------- */
.simcfo-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 64px;
  align-items: start;
}
.simcfo-prose p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 58ch;
}
.simcfo-prose strong { color: var(--ink); font-weight: 600; }
.simcfo-prose a { color: var(--burgundy); border-bottom: 1px solid rgba(110, 42, 63, 0.35); }
.simcfo-prose a:hover { border-bottom-color: var(--burgundy); }
.simcfo-prose .cta-row { margin-top: 28px; }

/* card — simcfo summary */
.card {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 28px 24px;
  border: 1px solid var(--ink);
  position: relative;
  box-shadow: 0 30px 60px -28px rgba(12, 26, 44, 0.4);
}
.card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(200, 168, 90, 0.22);
  pointer-events: none;
}
.card-head {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(200, 168, 90, 0.3);
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.card-body { display: flex; flex-direction: column; gap: 16px; }
.card-lede {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--paper);
  font-variation-settings: "opsz" 72, "SOFT" 100;
}
.card-list {
  list-style: none;
  border-top: 1px solid rgba(200, 168, 90, 0.18);
  margin-top: 4px;
}
.card-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 168, 90, 0.18);
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(243, 236, 216, 0.86);
}
.card-list li::before {
  content: "—";
  color: var(--gold-bright);
  margin-right: 10px;
}
.card-foot {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 168, 90, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--rule-soft);
  padding-top: 36px;
}
.contact-grid > div { max-width: 38ch; }
.contact-grid p { color: var(--ink-2); font-size: 16.5px; line-height: 1.65; }
.contact-grid a {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(110, 42, 63, 0.35);
}
.contact-grid a:hover { border-bottom-color: var(--burgundy); }

/* ---------- signup ---------- */
.signup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 56px;
  max-width: 1320px;
  margin: 32px auto 80px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background:
    repeating-linear-gradient(90deg, transparent 0 5px, rgba(160,127,51,0.025) 5px 6px),
    var(--paper-2);
}
.signup h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  margin: 6px 0 12px;
  font-style: italic;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.signup-body { color: var(--ink-2); font-size: 17px; line-height: 1.6; max-width: 46ch; }
.signup-cta { display: flex; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 900px) { .signup-cta { justify-content: flex-start; } }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--rule);
  padding: 56px 56px 48px;
  background: var(--ink);
  color: rgba(243, 236, 216, 0.86);
}
footer .wordmark .wm-name { color: var(--paper); font-style: italic; }
footer .wordmark .wm-divider { background: var(--gold-bright); }
footer .wordmark .wm-sub { color: var(--gold-bright); }
.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  max-width: 1320px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.wordmark-foot { margin-bottom: 22px; display: inline-flex; }
.foot-meta {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(243, 236, 216, 0.78);
  font-style: italic;
}
.foot-disclaimer { max-width: 36ch; text-align: right; }
@media (max-width: 720px) { .foot-disclaimer { text-align: left; } }
.foot-meta a { color: var(--gold-bright); border-bottom: 1px solid rgba(200, 168, 90, 0.35); }
.foot-meta a:hover { border-bottom-color: var(--gold-bright); }
.wink {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-bright);
  font-variation-settings: "opsz" 72, "SOFT" 100;
}

/* ---------- responsive ---------- */
/* keep two-column layouts as long as they read well; collapse below 960px */
@media (max-width: 960px) {
  .overture { grid-template-columns: 1fr; gap: 56px; padding: 80px 40px 64px; }
  .overture::before { display: none; }
  .overture-text { padding-left: 0; }
  .seal { position: static; justify-self: start; margin-top: 0; }
  .firm-grid, .leadership-grid, .simcfo-grid { grid-template-columns: 1fr; gap: 56px; }
  .portrait { position: static; max-width: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  section.firm, section.leadership, section.practice,
  section.letter, section.simcfo, section.contact {
    padding: 72px 40px;
  }
  .signup { grid-template-columns: 1fr; padding: 64px 40px; }
}
@media (max-width: 720px) {
  .masthead { padding: 18px 20px; flex-wrap: wrap; gap: 14px; }
  .nav { gap: 18px; font-size: 13.5px; }
  .wm-sub { display: none; }
  .wm-divider { display: none; }
  .overture { padding: 56px 20px; }
  .rule { margin: 0 20px; }
  .h1-line { display: inline; }
  h1 { max-width: none; }
  section.firm, section.leadership, section.practice,
  section.letter, section.simcfo, section.contact {
    padding: 56px 20px;
  }
  .signup { padding: 48px 20px; margin-bottom: 56px; }
  .services li { grid-template-columns: 40px 1fr; gap: 18px; padding: 24px 4px; }
  .memos > li > p { padding-left: 0; }
  footer { padding: 40px 20px; }
  .foot-disclaimer { max-width: none; }
}
