:root {
  --paper: #f1efe9;
  --paper-2: #e8e5dc;
  --ink: #171a18;
  --ink-soft: #454b46;
  --green: #172b24;
  --green-mid: #203d34;
  --sage: #c9d1c8;
  --sage-accent: #456257;
  --line: #cfcbc1;
  --line-dark: #32413c;
  --cream: #efede7;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --gutter: clamp(1.25rem, 6vw, 6rem);
  --maxw: 78rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

/* Offset anchored sections so the sticky header never covers their top */
#ideas, #about, #consultation, #speaking {
  scroll-margin-top: calc(var(--header-h, 6rem) + 1rem);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
  border-radius: 0 0 0.25rem 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--sage-accent);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 24px -8px rgba(23, 26, 24, 0.30);
}

.nav {
  max-width: 92rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.4rem clamp(1.25rem, 4vw, 3rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.brand-location {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}
.loc-pin {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: #d63a2e;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-location .flag {
  display: inline-flex;
  width: 1.15em;
  line-height: 1;
}
.brand-location .flag svg {
  width: 100%;
  height: auto;
  display: block;
  border: 0.5px solid var(--line);
  border-radius: 2px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex: none;
  display: inline-flex;
}
.brand-mark svg { width: 100%; height: 100%; display: block; border-radius: 11px; }

.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  font-size: 1.65rem;
  color: var(--ink);
  white-space: nowrap;
}

.cred {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-left: 2px solid var(--sage-accent);
  padding-left: 1.25rem;
}

.role {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.role-text {
  flex: none;
  width: 12rem;
  line-height: 1.25;
}
.ms-logo {
  width: 30px;
  height: 30px;
  flex: none;
  display: inline-flex;
}
.ms-logo svg { width: 100%; height: 100%; display: block; }

.past-marks {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding-left: 0.9rem;
  border-left: 1px solid var(--line);
}
@media (min-width: 92rem) {
  .past-marks { display: inline-flex; }
}
.past-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-accent);
}
.past-label::after {
  content: "\203A";
  margin-left: 0.4rem;
  font-weight: 400;
}
.past-logo {
  width: 22px;
  height: 22px;
  flex: none;
  display: inline-flex;
}
.past-logo svg { width: 100%; height: 100%; display: block; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 0 0 auto;
  padding: 0;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.6rem 0;
  display: inline-block;
  transition: opacity 0.2s ease;
}
.nav-links a:hover { opacity: 0.6; }

.nav-cta {
  background: var(--green-mid);
  color: #fff !important;
  padding: 0.65rem 1rem !important;
  border-radius: 999px;
  border: 1.5px solid var(--green-mid);
  font-weight: 600;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 1 !important; background: var(--green); border-color: var(--green); }

.nav-cta--outline {
  background: var(--sage);
  color: var(--green) !important;
  border-color: var(--green-mid);
}
.nav-cta--outline:hover { background: var(--sage-accent); color: #fff !important; border-color: var(--green); }

.nav-cta--ghost {
  background: var(--paper-2);
  color: var(--ink) !important;
  border-color: var(--line);
  font-weight: 500;
}
.nav-cta--ghost:hover { background: var(--sage); color: var(--green) !important; border-color: var(--green-mid); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0.6rem 0.15rem;
  margin: 0;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.lang-btn:hover { opacity: 0.8; }
.lang-btn.is-active { opacity: 1; font-weight: 600; }
.lang-sep { opacity: 0.3; font-size: 0.78rem; }

/* ---------- Sequence ---------- */
.statement {
  border-bottom: 1px solid var(--line);
  padding: clamp(4rem, 11vh, 8.5rem) var(--gutter);
}

.statement > * {
  max-width: var(--maxw);
  margin-inline: auto;
}

.index {
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--sage-accent);
  margin: 0 0 1.75rem;
}

.idea {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  margin: 0;
  max-width: 18ch;
}

.reflection {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 2rem 0 0;
  max-width: 34ch;
  margin-left: auto;
}

.statement--dark {
  background: var(--green);
  color: var(--cream);
  border-color: var(--line-dark);
}
.statement--dark .index { color: #9bb4aa; }
.statement--dark .reflection { color: #c3ccc6; }

.statement--split { background: var(--paper-2); }

/* ---------- About ---------- */
.about {
  padding: clamp(4.5rem, 12vh, 8rem) var(--gutter);
  border-bottom: 1px solid var(--line);
}

.about-inner {
  max-width: var(--maxw);
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.about-lead {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  align-content: start;
}

.about-heading {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0;
}

.about-personal {
  display: grid;
  gap: clamp(1.4rem, 2.8vw, 1.9rem);
}
.pgroup {
  display: grid;
  gap: 0.8rem;
}
.about-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-accent);
}
.about-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.about-facts li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--ink);
}
.fact-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-accent);
}
.fact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.about-tags li {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--ink-soft);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
}

.about-body {
  display: grid;
  gap: 1.35rem;
  max-width: 46ch;
}

.about-body p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.about-body p:first-child { color: var(--ink); }

@media (min-width: 56rem) {
  .about-inner {
    grid-template-columns: 0.85fr 1.5fr;
    gap: clamp(3rem, 6vw, 6rem);
  }
}

.reach {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3.25rem);
}

.social {
  display: grid;
  gap: clamp(1.1rem, 2.5vw, 1.6rem);
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.social-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem) clamp(1.75rem, 4vw, 3.25rem);
}

.social-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.social-logo {
  width: 1.9rem;
  height: 1.9rem;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-logo svg { width: 100%; height: 100%; display: block; }

.social-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}

.social-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.social-label {
  font-size: 1rem;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}
.social-item:hover .social-label { border-color: var(--ink); }

.experience {
  display: grid;
  gap: clamp(1.1rem, 2.5vw, 1.6rem);
}

.exp-eyebrow {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-mid);
}

.exp-companies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem clamp(1rem, 2.2vw, 1.75rem);
}

.company {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

@media (min-width: 62rem) {
  .exp-companies { flex-wrap: nowrap; }
}

.company .logo {
  display: inline-flex;
  width: 1em;
  height: 1em;
  flex: none;
}
.company .logo svg { width: 100%; height: 100%; display: block; }

.company--past { color: var(--ink-soft); }

.exp-sep {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-accent);
  align-self: center;
}

/* ---------- Closing / consultation ---------- */
.closing {
  background: var(--sage);
  padding: clamp(4.5rem, 12vh, 9rem) var(--gutter);
}
.speaking {
  background: var(--green);
  color: var(--cream);
  padding: clamp(4.5rem, 12vh, 9rem) var(--gutter);
}

.closing-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  width: 100%;
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
}

.closing-heading {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin: 0;
  max-width: 22ch;
}

.closing-intro {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #24322c;
}

.needs {
  columns: 2;
  column-gap: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 52rem) {
  .needs { columns: 1; }
}
.need-group {
  break-inside: avoid;
  margin: 0 0 clamp(1.6rem, 3vw, 2.4rem);
}
.need-group-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-accent);
  margin: 0 0 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--sage-accent);
}
.need-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.need-item {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.4;
  color: #3a463f;
}
.need-label {
  font-weight: 600;
  color: var(--green);
}
.need-label::after {
  content: " \2014 ";
  color: var(--sage-accent);
  font-weight: 400;
}

.closing-note {
  margin: 0;
  max-width: 52ch;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--green);
  border-left: 2px solid var(--sage-accent);
  padding-left: 1.25rem;
}

.closing-proof {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
}
.closing-proof-num {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--green);
}
.closing-proof-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--ink-soft);
  max-width: 22ch;
}
.closing-proof-trend {
  width: 1.3rem;
  height: 1.3rem;
  flex: none;
  color: var(--green-mid);
}

.cta-wrap {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
  justify-self: start;
}
.cta-note {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--sage-accent);
}

.speaking-body {
  margin: 0;
  max-width: 60ch;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(239, 237, 231, 0.85);
}
.speaking-scale {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  letter-spacing: 0.01em;
  color: var(--cream);
}

.exp-eyebrow--light { color: var(--sage); }

.cta {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cta:hover { background: #0f1f19; transform: translateY(-1px); }
.cta-icon {
  width: 1.05em;
  height: 1.05em;
  flex: none;
  transition: transform 0.2s ease;
}
.cta:hover .cta-icon { transform: translateX(3px); }

.cta--light { background: var(--cream); color: var(--green); }
.cta--light:hover { background: #fff; }

/* ---------- Scroll cue (peek at next section) ---------- */
.scroll-cue {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0.75rem 0.6rem 1.2rem;
  max-width: calc(100vw - 2rem);
  background: var(--ink);
  color: var(--cream);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(23, 43, 36, 0.28);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s, background 0.2s ease;
}
.scroll-cue:hover { background: #000; }
.scroll-cue-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}
.scroll-cue-eyebrow {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.6;
}
.scroll-cue-label {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.scroll-cue-arrow {
  width: 34px;
  height: 34px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(239, 237, 231, 0.12);
  animation: cueBounce 1.9s ease-in-out infinite;
}
.scroll-cue-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scroll-cue.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}
@keyframes cueBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue-arrow { animation: none; }
}
.no-js .scroll-cue { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper);
  color: var(--ink);
  box-shadow: inset 0 14px 22px -16px rgba(23, 26, 24, 0.30);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem var(--gutter) 2.5rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem 3rem;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.footer-role {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}
.footer-links a {
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.footer-links a:hover { border-color: var(--ink); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.footer-year, .footer-made { margin: 0; font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* JS-off fallback: reveal handled in main.js by adding .js to html */
.no-js .reveal { opacity: 1; transform: none; }

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

/* Compact single row: below the full layout we drop the "Previously" marks
   and tighten sizes so the header stays on one line as long as it fits. */
@media (max-width: 92rem) {
  .nav { gap: 0.85rem; padding: 1.15rem clamp(1rem, 3vw, 2rem); }
  .brand { gap: 0.55rem; }
  .brand-mark { width: 36px; height: 36px; }
  .wordmark { font-size: 1.45rem; }
  .cred { gap: 0.7rem; padding-left: 0.9rem; }
  .role { font-size: 0.72rem; gap: 0.45rem; }
  .role-text { width: 10.5rem; }
  .ms-logo { width: 26px; height: 26px; }
  .nav-links { gap: 0.85rem; font-size: 0.78rem; }
  .nav-cta { padding: 0.55rem 0.85rem !important; }
}

/* Wrapped header: only when the compact single row can no longer fit. */
@media (max-width: 64rem) {
  .nav { flex-wrap: wrap; gap: 0.75rem 1.25rem; }
  .cred {
    order: 2;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 0.75rem 0 0;
  }
  .past-marks { display: inline-flex; }
  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.6rem 1rem;
    margin-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 0.75rem;
    font-size: 0.8rem;
  }
  .nav-links li { flex: 1; display: flex; }
  .nav-links .nav-cta { flex: 1; text-align: center; }
  .lang-switch { order: 1; margin-left: auto; }
}

@media (max-width: 46rem) {
  .about { padding-block: clamp(2.75rem, 6.5vh, 4.5rem); }
  .statement { padding-block: clamp(2.5rem, 6vh, 4rem); }
  .closing,
  .speaking { padding-block: clamp(2.75rem, 6.5vh, 4.5rem); }
  .reflection { margin-left: 0; }
  .cta-wrap { width: 100%; }
  .cta { width: 100%; justify-content: center; padding-inline: 1rem; }
  .closing-proof {
    width: 100%;
    gap: 0.7rem;
    padding: 0.85rem 1.1rem;
    background: rgba(23, 43, 36, 0.05);
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .closing-proof-num { font-size: 1.6rem; }
  .closing-proof-text { font-size: 0.82rem; line-height: 1.2; max-width: none; }
  .closing-proof-trend { width: 1.15rem; height: 1.15rem; margin-left: auto; color: var(--sage-accent); }
}
