:root {
  --ink: #172027;
  --muted: #5f6b72;
  --paper: #f8f7f2;
  --white: #ffffff;
  --line: #d8d2c6;
  --green: #336633;
  --green-dark: #1f4324;
  --copper: #8f6a3d;
  --blue: #294653;
  --shadow: 0 24px 80px rgba(23, 32, 39, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--ink);
  background: rgba(248, 247, 242, 0.96);
  box-shadow: 0 1px 0 rgba(23, 32, 39, 0.08);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 247, 242, 0.96);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(23, 32, 39, 0.12);
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.8;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 26px);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

/* Current-page marker: green text plus a small copper dot below the label */
.site-nav a[aria-current="page"] {
  color: var(--green-dark);
  font-weight: 750;
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
  transform: translateX(-50%);
}

.nav-toggle {
  display: none;
}

.header-cta {
  min-height: 40px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--green-dark);
}

.header-cta-mobile {
  display: none;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 124px clamp(20px, 6vw, 84px) 58px;
  color: var(--ink);
  overflow: hidden;
  background: linear-gradient(135deg, #fffefb 0%, var(--paper) 56%, #e9eee7 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: linear-gradient(90deg, var(--green), var(--green), var(--copper), var(--blue));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}

.hero-media {
  position: relative;
  z-index: 1;
  margin: 0;
  align-self: stretch;
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-media picture,
.portrait-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(31, 67, 36, 0.88);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.04;
}

h1 {
  max-width: 860px;
  font-size: clamp(44px, 5.6vw, 68px);
}

h2 {
  font-size: clamp(30px, 3.8vw, 46px);
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

p {
  line-height: 1.6;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: #3f4a4f;
  font-size: clamp(18px, 2.5vw, 22px);
}

.hero-proof {
  max-width: 66ch;
  margin: 1rem 0 0;
  color: var(--green-dark);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.outline {
  border-color: var(--line);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.74);
}

.button.outline:hover {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 820px;
  margin-top: 24px;
}

.hero-strip span,
.credential-grid span {
  padding: 2px 0 5px;
  border-bottom: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: clamp(46px, 6vw, 68px) clamp(20px, 6vw, 84px);
  border-top: 1px solid rgba(216, 210, 198, 0.48);
}

.page-offset {
  padding-top: clamp(108px, 12vw, 132px);
}

.page-hero {
  position: relative;
  display: grid;
  /* Single column until the P-1 photos land; the second column
     (minmax(0, 0.68fr) minmax(260px, 0.32fr)) returns when a
     .page-hero-media figure occupies it. */
  grid-template-columns: minmax(0, 1fr);
  column-gap: clamp(24px, 4vw, 52px);
  row-gap: 20px;
  align-items: center;
  padding: 124px clamp(20px, 6vw, 84px) 58px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fffefb 0%, var(--paper) 62%, #edf2eb 100%);
  overflow: hidden;
}

.page-hero > * {
  grid-column: 1;
}

.page-hero h1,
.page-title {
  max-width: 920px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 600;
  line-height: 1.04;
  margin: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.6;
}

.page-hero .eyebrow {
  margin-bottom: 0;
  color: var(--green);
  font-size: 16px;
}

.page-hero .hero-actions {
  margin-top: 10px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 4.5vw, 58px);
  background: var(--paper);
}

.stacked-copy {
  display: grid;
  gap: 18px;
  max-width: 68ch;
}

.stacked-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.stall-figure {
  width: 100%;
  max-width: 520px;
  margin: 30px 0 0;
}

.stall-figure svg {
  display: block;
  width: 100%;
  height: auto;
}

.stall-figure figcaption {
  max-width: 48ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.section-heading,
.proof-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: start;
}

.section-heading > p,
.proof-copy p,
.contact-copy p,
.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading > p,
.split-section > .stacked-copy {
  padding-top: 28px;
}

.hero-copy,
.page-hero p:not(.eyebrow),
.section-heading > p,
.proof-copy p,
.contact-copy > p,
.about-copy > p {
  max-width: 68ch;
}

.service-section {
  background: var(--white);
}

.section-heading {
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 0;
  padding: 20px 0;
  border-top: 2px solid var(--line);
}

.service-number {
  display: block;
  margin-bottom: 24px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

.service-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.audience-route-section,
.proof-section {
  background: #f3efe7;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.route-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 0;
  border-top: 2px solid var(--green);
}

.route-card span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-card strong {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.08;
}

.route-card p {
  margin: auto 0 0;
  color: var(--muted);
}

.proof-copy p {
  margin-top: 22px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid div {
  min-height: 0;
  padding: 20px 0;
  border-top: 2px solid var(--line);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--green-dark);
  font-size: 18px;
}

.proof-grid span {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.deliverables-section {
  background: var(--white);
}

.neutral-section {
  background: var(--green-dark);
  color: var(--white);
}

.neutral-section .section-heading {
  margin-bottom: 0;
}

.neutral-section .section-heading > p {
  color: rgba(255, 255, 255, 0.78);
}

.deliverables-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
}

.deliverables-list span {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.question-list {
  display: grid;
  gap: 14px;
}

.question-list p {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: #fbfaf6;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
}

.jurisdiction-section {
  background: var(--white);
}

.jurisdiction-grid,
.capability-grid,
.detail-grid {
  display: grid;
  gap: 16px;
}

.jurisdiction-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-grid,
.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jurisdiction-card,
.notice-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.capability-card,
.detail-card {
  padding: 20px 0;
  border-top: 2px solid var(--line);
}

.jurisdiction-card {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: hidden;
  border-top: 4px solid var(--green);
}

.jurisdiction-card strong,
.capability-card strong,
.detail-card strong,
.notice-card strong {
  display: block;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.12;
}

.jurisdiction-card span,
.capability-card span,
.detail-card span,
.notice-card span {
  display: block;
  margin-top: 0;
  color: var(--muted);
  line-height: 1.55;
}

.jurisdiction-card .jurisdiction-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 210, 198, 0.82);
}

.capability-card ul,
.detail-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.notice-card {
  border-left: 4px solid var(--green);
  background: #fbfaf6;
}

.notice-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.about-copy .notice-card {
  margin-top: 28px;
}

.process-section {
  background: #ece7dd;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  border-top: 3px solid var(--green);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(23, 32, 39, 0.08);
}

.process-list li:nth-child(3) {
  border-top-color: var(--copper);
  background: #fffefb;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.process-list li:nth-child(3) span {
  background: var(--copper);
}

.process-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.system-section {
  background: var(--white);
}

.system-panel {
  display: grid;
  gap: clamp(30px, 4vw, 48px);
  padding: 0;
}

.system-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.system-copy h3,
.system-copy p {
  margin: 0;
}

.system-copy p {
  color: var(--muted);
}

.state-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.state-chip-list span {
  padding: 8px 12px;
  border: 1px solid rgba(51, 102, 51, 0.22);
  border-radius: 999px;
  color: var(--green-dark);
  background: #edf2eb;
  font-size: 12px;
  font-weight: 850;
}

.closing-diagram .state-chip-list {
  margin-top: 18px;
}

.closing-diagram {
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--paper);
}

.closing-diagram-kicker {
  margin: 0 0 4px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-diagram h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.05;
}

.closing-diagram-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 650;
  line-height: 1.35;
}

.closing-diagram-svg {
  display: block;
  width: 100%;
  height: auto;
  margin: 16px 0 0;
  overflow: visible;
}

.closing-layout-mobile {
  display: none;
}

.closing-path-base,
.closing-path-progress {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
}

.closing-path-base {
  stroke: #cbd6ca;
}

.closing-path-progress {
  stroke: var(--green-dark);
}

.closing-day-marker {
  fill: none;
  stroke: #ad3e24;
  stroke-width: 3;
  stroke-dasharray: 7 7;
}

.closing-node {
  fill: var(--green);
  stroke: var(--paper);
  stroke-width: 5;
}

.closing-node-closing {
  fill: #ad3e24;
}

.closing-node-open {
  fill: var(--paper);
  stroke: var(--green-dark);
}

.closing-node-open {
  stroke-width: 6;
}

.closing-stage-label {
  fill: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.closing-stage-label-accent {
  fill: #8f2f1d;
}

.closing-lane-label {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.closing-lane-label-legal,
.closing-lane-sublabel,
.closing-legal-note,
.closing-separate-label,
.closing-mobile-legal-label,
.closing-mobile-separate-label {
  fill: #9a6b22;
}

.closing-lane-label-funds,
.closing-funds-note,
.closing-mobile-funds-label {
  fill: #256548;
}

.closing-lane-sublabel {
  font-size: 14px;
  font-style: italic;
  font-weight: 650;
}

.closing-legal-note,
.closing-funds-note {
  font-size: 15px;
  font-weight: 650;
}

.closing-legal-note-separate {
  fill: #7b4c1b;
  font-size: 14px;
}

.closing-note-qualifier {
  font-style: italic;
}

.closing-separate-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.closing-legal-stem,
.closing-funds-stem {
  fill: none;
  stroke-width: 2;
}

.closing-legal-stem {
  stroke: rgba(170, 122, 47, 0.48);
}

.closing-legal-stem-separate {
  stroke-dasharray: 6 5;
}

.closing-funds-stem {
  stroke: rgba(37, 101, 72, 0.46);
}

.closing-funds-stem-closing {
  stroke: #ad3e24;
  stroke-dasharray: 6 5;
}

.closing-stage-block {
  fill: rgba(255, 255, 255, 0.76);
  stroke: var(--line);
  stroke-width: 1.5;
}

.closing-stage-block-separate {
  stroke: rgba(154, 107, 34, 0.62);
  stroke-dasharray: 6 5;
}

.closing-stage-block-closing {
  stroke: rgba(173, 62, 36, 0.52);
}

.closing-mobile-divider {
  stroke: var(--line);
  stroke-width: 1.5;
}

.closing-mobile-lane-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.closing-mobile-separate-label {
  fill: #7b4c1b;
}

.closing-diagram-caption {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.5;
}

.closing-diagram.is-animated .closing-path-progress {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.closing-diagram.is-animated .closing-stage {
  opacity: 0;
}

.closing-diagram.is-visible .closing-path-progress {
  animation: closing-path-draw 1.25s ease-out forwards;
}

.closing-diagram.is-visible .closing-stage {
  animation: closing-stage-reveal 0.32s ease-out forwards;
}

.closing-diagram.is-visible .closing-stage-1 { animation-delay: 0.08s; }
.closing-diagram.is-visible .closing-stage-2 { animation-delay: 0.33s; }
.closing-diagram.is-visible .closing-stage-3 { animation-delay: 0.58s; }
.closing-diagram.is-visible .closing-stage-4 { animation-delay: 0.83s; }
.closing-diagram.is-visible .closing-stage-5 { animation-delay: 1.08s; }

@keyframes closing-path-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes closing-stage-reveal {
  to { opacity: 1; }
}

.about-section {
  background: var(--white);
}

.about-section.page-offset,
.contact-section.page-offset {
  position: relative;
  overflow: hidden;
}

.about-heading-row {
  position: relative;
  overflow: hidden;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.portrait-card {
  min-height: 480px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(35, 83, 71, 0.92), rgba(44, 83, 100, 0.88)),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.2), transparent 28%);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-card span {
  display: grid;
  place-items: center;
  width: min(190px, 46vw);
  height: min(190px, 46vw);
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(88px, 18vw, 146px);
}

.portrait-photo {
  background: var(--green-dark);
}

.portrait-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}

.about-copy {
  align-self: center;
}

.about-copy p {
  margin-top: 22px;
}

.about-page-panel {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  align-items: start;
}

.about-heading-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 30px;
}

.about-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  width: min(100%, 380px);
}

.about-page-panel .portrait-card {
  width: 100%;
  height: 506px;
  min-height: 0;
  margin: 0;
}

.about-page-panel .portrait-photo img {
  min-height: 0;
  height: 100%;
  object-position: center 20%;
}

.about-page-panel .about-copy {
  align-self: auto;
}

.credential-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-grid span {
  border-color: #d8d2c6;
  color: var(--green-dark);
}

.admission-lookup {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: #fffefb;
}

.admission-lookup strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.admission-lookup div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 15px;
}

.admission-lookup a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.admission-lookup span {
  color: var(--muted);
  font-weight: 700;
}

.linkedin-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 6px 12px;
  align-items: center;
  width: 100%;
  padding: 16px;
  border: 1px solid #b8c7d8;
  border-radius: var(--radius);
  color: #0a66c2;
  background: #f7fbff;
  text-decoration: none;
}

.linkedin-card span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: var(--white);
  background: #0a66c2;
  font-size: 22px;
  font-weight: 850;
}

.linkedin-card strong,
.linkedin-card small {
  display: block;
}

.linkedin-card strong {
  color: #064b8f;
}

.linkedin-card small {
  color: var(--muted);
  line-height: 1.35;
}

.office-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-study-card {
  min-height: 100%;
  padding: 20px 0;
  border-top: 4px solid var(--green);
}

.case-study-card strong {
  display: block;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.2;
}

.case-study-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.case-study-card .case-study-outcome {
  margin-top: 1rem;
  color: var(--green-dark);
  font-weight: 700;
}

.loi-snippet {
  margin: 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
  color: var(--ink);
  font: 600 clamp(1.05rem, 2vw, 1.25rem)/1.65 Georgia, "Times New Roman", serif;
}

.wire-callout {
  margin-bottom: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(51, 102, 51, 0.24);
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}

.wire-callout h2,
.wire-callout p {
  color: inherit;
}

.guide-byline {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.guide-compliance,
.related-guides {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.guide-compliance p {
  color: var(--muted);
  font-size: 0.92rem;
}

.related-guide-links {
  display: grid;
  gap: 0.75rem;
}

.related-guide-links a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.testimonial-card {
  margin: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
}

.testimonial-card blockquote {
  max-width: 34ch;
  margin: 0;
  font: 700 clamp(1.5rem, 4vw, 2.5rem)/1.2 Georgia, "Times New Roman", serif;
}

.testimonial-card figcaption {
  margin-top: 1.25rem;
  font-weight: 700;
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.start-card {
  padding: 20px 0;
  border-top: 2px solid var(--line);
}

.start-card h3 {
  margin: 0.75rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.start-card blockquote,
.start-card .start-note {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--green);
  color: var(--muted);
}

.start-card li + li {
  margin-top: 0.6rem;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.fit-card {
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border: 1px solid rgba(51, 102, 51, 0.25);
  border-radius: var(--radius);
  background: rgba(51, 102, 51, 0.07);
}

.not-fit-card {
  border-color: var(--line);
  background: var(--white);
}

.fit-card h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.fit-card li + li {
  margin-top: 0.75rem;
}

.document-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.document-group {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.document-group h3 {
  margin-top: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.document-group li + li {
  margin-top: 0.65rem;
}

.wire-callout p {
  max-width: 66ch;
  margin: 0 auto 1.5rem;
}

.guide-hero {
  min-height: 440px;
}

.guide-index-section {
  background: var(--paper);
}

.guide-browse-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.guide-browse-heading h2 {
  margin-bottom: 0;
}

.guide-browse-modes,
.guide-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.guide-browse-modes button,
.guide-filter-row button {
  border: 1px solid var(--green-dark);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: transparent;
  color: var(--green-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.guide-browse-modes button[aria-pressed="true"],
.guide-filter-row button[aria-pressed="true"] {
  background: var(--green-dark);
  color: var(--white);
}

.guide-filter-row {
  margin-bottom: 1rem;
}

.guide-library-note {
  max-width: 70ch;
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.guide-card[hidden],
.guide-filter-row[hidden],
.guide-empty[hidden] {
  display: none;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guide-card {
  padding: 20px 0;
  border-top: 2px solid var(--green);
}

.guide-card h3 {
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.guide-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.guide-card h3 a:hover {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.guide-card p:last-child {
  color: var(--muted);
}

.guide-card .guide-card-tags {
  margin-top: 1.25rem;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Deal-timeline stage label at the top of each guide card */
.guide-card-stage {
  margin: 0;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Compact list view — one row per guide: stage, title, tags.
   The guides index uses this permanently (J's decision 2026-07-09). */
.guide-card-grid.guide-list-view {
  display: block;
}

.guide-list-view .guide-card {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.guide-list-view .guide-card[hidden] {
  display: none;
}

.guide-list-view .guide-card-stage {
  flex: 0 0 170px;
}

.guide-list-view .guide-card h3 {
  flex: 1 1 32ch;
  margin: 0;
  font-size: 21px;
}

.guide-list-view .guide-card h3 + p {
  display: none;
}

.guide-list-view .guide-card .guide-card-tags {
  flex: 0 0 auto;
  margin: 0;
  font-size: 0.72rem;
}

.guide-article {
  padding-top: 112px;
  background: linear-gradient(180deg, rgba(247, 245, 239, 0.98), rgba(255, 254, 251, 0.96));
}

.guide-header {
  width: min(76ch, calc(100% - 40px));
  margin: 0 auto;
}

.guide-body {
  width: min(68ch, calc(100% - 40px));
  margin: 0 auto;
}

.guide-header {
  padding: 58px 0 34px;
}

.guide-header h1 {
  max-width: 860px;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.guide-header p:last-child {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.guide-body {
  padding: 36px 0 82px;
}

.guide-body-visual {
  width: min(1200px, calc(100% - 40px));
}

.guide-body-visual > :not(.closing-diagram) {
  max-width: 68ch;
  margin-right: auto;
  margin-left: auto;
}

.guide-body-visual > .closing-diagram {
  margin-bottom: 52px;
}

.guide-body h2 {
  margin: 42px 0 12px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.guide-body p,
.guide-body li {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
}

.guide-body p {
  margin: 0 0 16px;
}

.guide-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 24px;
}

.guide-exhibit {
  margin: 2.5rem 0;
}

.guide-exhibit svg {
  width: 100%;
  height: auto;
}

.guide-exhibit .guide-figure-compact {
  display: block;
  width: min(100%, 520px);
  margin-inline: auto;
}

.guide-exhibit figcaption {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.experience-note {
  margin: 2.5rem 0;
  padding-left: 1.25rem;
  border-left: 4px solid var(--copper);
}

.experience-note h2 {
  margin-top: 0;
}

.decision-checklist {
  margin-top: 2.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
}

.decision-checklist ol {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.5rem;
}

/* Sidenote example:
   <span class="sidenote" role="note"><span class="sidenote-number">1</span>
   Short citation or disclaimer.</span>
   At 1100px and wider it sits in the margin; below that it returns inline. */
.sidenote {
  display: block;
  margin: 1rem 0;
  padding: 0.75rem 0 0.75rem 1rem;
  border-left: 2px solid var(--copper);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.sidenote-number {
  margin-right: 0.35rem;
  color: var(--copper);
  font-weight: 800;
}

@media (min-width: 1100px) {
  .sidenote {
    float: right;
    clear: right;
    width: 200px;
    margin: 0.25rem -224px 1rem 24px;
    padding: 0;
    border-left: 0;
  }
}

.guide-cta {
  margin-top: 48px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.guide-cta h2 {
  margin-top: 0;
}

.name-note {
  width: 100%;
  padding: 22px;
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  background: var(--paper);
}

.name-note h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-dark);
}

.name-note p {
  margin-top: 10px;
  font-size: 16px;
}

.contact-section {
  align-items: start;
}

.contact-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.intake-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intake-form label:last-of-type,
.intake-form button {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc7bb;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fffefb;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bot-field {
  display: none;
}

.turnstile-slot {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-transform: none;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  color: var(--green-dark);
}

.form-status[data-state="error"] {
  color: #9d2d20;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(260px, 1.2fr) minmax(220px, 0.8fr);
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ece7dd;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .footer-linkedin {
  display: inline;
  color: #0a66c2;
  font-weight: 850;
  text-decoration: underline;
}

.site-footer .footer-copyright {
  display: inline-block;
  margin-top: 10px;
}

.site-footer .footer-home {
  color: var(--ink);
  text-decoration: none;
}

.footer-disclaimer {
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    background: transparent;
    color: inherit;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    white-space: normal;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  /* In the mobile dropdown the dot sits inline after the label */
  .site-nav a[aria-current="page"]::after {
    position: static;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    transform: none;
  }

  .header-cta-desktop {
    display: none;
  }

  .site-nav .header-cta-mobile {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 11px 14px;
  }
}

@media (max-width: 1040px) {

  .guide-browse-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-grid,
  .route-grid,
  .process-list,
  .jurisdiction-grid,
  .case-study-grid,
  .guide-card-grid,
  .capability-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .start-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 112px 20px 40px;
  }

  .hero-media {
    min-height: 360px;
  }

  .page-hero,
  .system-panel,
  .system-copy {
    grid-template-columns: 1fr;
  }

  .page-hero > * {
    grid-column: 1;
  }

  .hero-strip {
    width: 100%;
    justify-content: flex-start;
  }

  .section-heading,
  .proof-section,
  .contact-section,
  .about-panel,
  .about-heading-row {
    grid-template-columns: 1fr;
  }

  .section-heading > p,
  .split-section > .stacked-copy {
    padding-top: 0;
  }

  .service-grid,
  .service-grid.three,
  .route-grid,
  .proof-grid,
    .case-study-grid,
    .guide-card-grid,
    .process-list,
    .jurisdiction-grid,
    .capability-grid,
    .detail-grid,
    .start-steps,
    .deliverables-list {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .document-groups {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 38px;
  }

  .portrait-card {
    min-height: 320px;
  }

  .portrait-photo img {
    min-height: 360px;
    object-position: center 20%;
  }

  .about-page-panel .portrait-card {
    width: min(100%, 420px);
    height: 420px;
    margin: 0;
  }

  .name-note {
    width: min(100%, 420px);
  }

  .about-page-panel .portrait-photo img {
    min-height: 0;
    height: 100%;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer p:last-child {
    text-align: left;
  }

  .intake-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .system-panel {
    gap: 24px;
    padding: 0;
  }

  .closing-diagram {
    padding: 20px 12px;
  }

  .closing-diagram h3 {
    font-size: 32px;
  }

  .closing-diagram-subtitle {
    font-size: 17px;
  }

  .closing-diagram .state-chip-list {
    margin-top: 14px;
  }

  .closing-layout-desktop {
    display: none;
  }

  .closing-layout-mobile {
    display: block;
  }

  .closing-diagram-svg {
    margin-top: 12px;
  }

  .closing-layout-mobile .closing-stage-label {
    font-size: 21px;
  }

  .closing-layout-mobile .closing-legal-note,
  .closing-layout-mobile .closing-funds-note {
    font-size: 17px;
  }

  .closing-layout-mobile .closing-lane-label {
    font-size: 18px;
  }

  .closing-layout-mobile .closing-lane-sublabel {
    font-size: 15px;
  }

  .closing-layout-mobile .closing-mobile-lane-label {
    font-size: 15px;
  }

  .closing-diagram-caption {
    padding-top: 16px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .closing-diagram.is-animated .closing-path-progress {
    animation: none;
    stroke-dashoffset: 0;
  }

  .closing-diagram.is-animated .closing-stage {
    animation: none;
    opacity: 1;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 38px;
  }

  .page-hero h1,
  .page-title {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  .brand small {
    display: none;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-strip {
    margin-top: 20px;
  }

  .hero-strip span {
    font-size: 12px;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }
}

/* Sub-blocks inside merged sections get full section-style separation
   (D-2 follow-up: guides teaser, how-to-start) */
.homepage-guides,
.how-to-start-section {
  margin-top: 72px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

/* Fit boxes flow inside the audience section, no divider or heading
   (J's decision 2026-07-09); disclaimer runs full width below the boxes */
.fit-section {
  margin-top: 44px;
}

.fit-disclaimer {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

/* State photos on jurisdiction cards — J's decision 2026-07-07: photos stay */
.jurisdiction-photo {
  display: block;
  width: calc(100% + 44px);
  margin: -22px -22px 2px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Figure + companion prose: integrate figure and text (D-3 follow-up) */
.figure-split {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.figure-split .stall-figure {
  margin-top: 0;
}

.figure-companion h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.figure-companion p {
  color: var(--muted);
  max-width: 52ch;
}

@media (max-width: 900px) {
  .figure-split {
    grid-template-columns: 1fr;
  }
}

/* Exhibit framing: every figure lives in a bounded, labeled panel */
.exhibit {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px) clamp(20px, 3vw, 32px);
}

.exhibit-label {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.exhibit .stall-figure {
  margin: 0;
  max-width: none;
}

.exhibit-split {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Closing statement exhibit: due-at-closing boxes mirror the real
   statement's wire boxes (seller copper, buyer green) */
.ledger-context {
  margin: -6px 0 18px;
  color: var(--muted);
  font-size: 14px;
  max-width: 52ch;
}

.statement-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3.5vw, 44px);
}

.due-box {
  padding: 14px 16px 12px;
  border: 1.5px solid;
  border-radius: var(--radius);
}

.due-box-buyer {
  border-color: var(--green);
  background: rgba(51, 102, 51, 0.05);
}

.due-box-seller {
  border-color: var(--copper);
  background: rgba(161, 92, 53, 0.06);
}

.due-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.due-box-buyer .due-kicker { color: var(--green-dark); }
.due-box-seller .due-kicker { color: var(--copper); }

.due-amount {
  margin: 8px 0 6px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: clamp(21px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1;
}

.due-terms {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* The reconciled ledger, in rows */
.ledger-section {
  margin: 22px 0 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ledger-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  font-size: 15px;
}

.ledger-row small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.ledger-amt {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  white-space: nowrap;
}

.ledger-total {
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.ledger-zero {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 2.5px solid var(--green);
  font-size: 17px;
  font-weight: 800;
  color: var(--green-dark);
}

.ledger-zero .ledger-amt {
  font-size: 20px;
  font-weight: 800;
}

/* Deal-map figure: moving parts converging into one file, pointed at closing.
   The arrow sits at the exact vertical center of the SVG. The heading sits
   directly above the figure in its own column (row 1), and the copy column
   spans row 2 only so it centers against the figure's height alone, lining
   its midpoint up with the arrow instead of the (much shorter) heading. */
.deal-map {
  margin: 0;
  max-width: 440px;
}

.deal-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.split-section > .stacked-copy.deal-map-copy {
  align-self: center;
  padding-top: 0;
}

@media (min-width: 821px) {
  .deal-map-section {
    grid-template-rows: auto 1fr;
    row-gap: 18px;
  }

  .deal-map-section .deal-map-heading {
    grid-column: 1;
    grid-row: 1;
  }

  .deal-map-section .deal-map {
    grid-column: 1;
    grid-row: 2;
  }

  .deal-map-section .deal-map-copy {
    grid-column: 2;
    grid-row: 2;
  }
}

.exhibit-notes-below {
  margin-top: 30px;
}

.exhibit-notes-below .exhibit-trio {
  margin-top: 14px;
}

.exhibit-notes-below strong {
  color: var(--ink);
}

@media (max-width: 820px) {
  .statement-pair {
    grid-template-columns: 1fr;
  }
}

.exhibit-notes p {
  color: var(--muted);
  max-width: 52ch;
}

.exhibit-notes h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.exhibit-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: 30px;
}

.exhibit-trio.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.exhibit-trio p {
  color: var(--muted);
  margin: 0;
}

.fig-wide { display: block; }
.fig-tall { display: none; }

@media (max-width: 900px) {
  .exhibit-split { grid-template-columns: 1fr; }
  .exhibit-trio,
  .exhibit-trio.four { grid-template-columns: 1fr; }
  .fig-wide { display: none; }
  .fig-tall { display: block; }
}
