/* ============================================================
   LAW-ALL-DAY — CORPORATE MARKETING SITE
   Built 2026-06-01 by simon, brand voice by Katrina.
   Sibling to the LawAllDay pitch deck (~/LawAllDay-PitchDeck/).
   Token system imported verbatim from tokens.css (dashboard-aligned).
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: var(--lh-body);
  font-feature-settings: var(--font-features);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: var(--ls-snug);
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

/* ============================================================
   1. LAYOUT PRIMITIVES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: 900px; }
.container.wide   { max-width: 1320px; }

section.section {
  padding: 96px 0;
  border-top: 1px solid var(--hairline);
}
section.section:first-of-type { border-top: 0; }
section.section.compact { padding: 64px 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 28ch;
}
.section-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 64ch;
  margin-bottom: 40px;
}

.brand-rule {
  display: inline-block;
  width: 56px;
  height: 2px;
  background: var(--brand-rule-gradient);
  margin: 8px 0 24px;
}

.mono { font-family: var(--mono); font-feature-settings: "tnum"; }
.mono.statute { color: var(--brand); font-weight: 500; font-size: 0.96em; }

em.amp, em.brand {
  font-style: italic;
  color: var(--brand);
}

/* ============================================================
   2. STICKY NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--t-brand-mark);
  letter-spacing: var(--ls-snug);
  color: var(--ink);
  line-height: 1;
}
.brand-mark .dot {
  color: var(--brand);
  font-weight: 600;
  margin: 0 0.04em;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  transition: color var(--t-quick);
}
.nav-links a:hover { color: var(--brand); text-decoration: none; }
/* .nav-cta needs to win over .nav-links a (specificity bump) — otherwise the
   ink-2 text-color from .nav-links a rendered dark-on-oxblood and the button
   text was invisible. Caught visually 2026-06-01. */
.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  background: var(--brand);
  color: var(--on-brand);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  border: 1px solid var(--brand);
  transition: background var(--t-quick);
}
.nav-links a.nav-cta:hover {
  background: var(--brand-2);
  color: var(--on-brand);
  text-decoration: none;
}
/* preserve white text + drop the underline pseudo when this is the current page */
.nav-links a.nav-cta[aria-current="page"] {
  color: var(--on-brand);
}
.nav-links a.nav-cta[aria-current="page"]::after {
  display: none;
}

@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-inner { padding: 0 20px; }
}

/* ============================================================
   3. HERO
   ============================================================ */
.hero {
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 22ch;
}
.hero-h1 .accent { color: var(--brand); font-style: italic; }
.hero-sub {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 60ch;
  margin-bottom: 40px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--t-quick), border-color var(--t-quick), color var(--t-quick);
  font-family: var(--sans);
}
.btn.primary {
  background: var(--brand);
  color: var(--on-brand);
  border-color: var(--brand);
}
.btn.primary:hover { background: var(--brand-2); border-color: var(--brand-2); text-decoration: none; color: var(--on-brand); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn.ghost:hover { border-color: var(--ink); text-decoration: none; }
.btn-arrow { font-size: 18px; margin-left: 2px; line-height: 1; }

/* ============================================================
   4. TRUST RIBBON (under hero)
   ============================================================ */
.trust-ribbon {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface-2);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  font-size: 12.5px;
  color: var(--ink-2);
  font-family: var(--mono);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .trust-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .trust-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   5. MODULE GRID (Platform Footprint — 12 modules, 4x3)
   ============================================================ */
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 1100px) { .module-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .module-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .module-grid { grid-template-columns: 1fr; } }

.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-quick), transform var(--t-quick);
}
.module-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.module-card .mod-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.module-card .mod-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.module-card .mod-body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  flex-grow: 1;
}
.module-card .mod-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.module-card .mod-tag.live  { background: var(--good-bg); color: var(--good); }
.module-card .mod-tag.eng   { background: var(--warn-bg); color: var(--warn); }
.module-card .mod-tag.part  { background: var(--draft-bg); color: var(--draft); }

/* ============================================================
   6. PILLAR GRID (Automation Stack — 4 pillars, 2x2)
   ============================================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 760px) { .pillar-grid { grid-template-columns: 1fr; } }

.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 28px 30px;
  box-shadow: var(--shadow-sm);
}
.pillar-card.channel { border-left-color: var(--brand); }
.pillar-card .pill-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pillar-card .pill-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--ink);
}
.pillar-card .pill-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.pillar-card .pill-body strong { color: var(--ink); font-weight: 600; }

.pillar-disclaimer {
  margin-top: 24px;
  font-size: 12.5px;
  font-style: italic;
  color: var(--muted);
  max-width: 92ch;
  line-height: 1.55;
}

/* ============================================================
   7. COMPLIANCE SECTION (the most important visual moment)
   ============================================================ */
.compliance {
  background: var(--surface-2);
  padding: 110px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.compliance .section-title { max-width: 32ch; }
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 32px;
}
@media (max-width: 900px) { .compliance-grid { grid-template-columns: 1fr; gap: 36px; } }

.comp-block {
  padding-top: 6px;
  border-top: 2px solid var(--gold);
  padding-left: 0;
}
.comp-block.featured {
  border-top-color: var(--brand);
}
.comp-block h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 18px 0 12px;
  color: var(--ink);
}
.comp-block p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-2);
}
.comp-block .label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.comp-block.featured .label { color: var(--brand); }

/* ============================================================
   8. FLAGSHIP CUSTOMER SECTION
   ============================================================ */
.flagship {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 32px;
}
@media (max-width: 900px) { .flagship { grid-template-columns: 1fr; gap: 40px; } }

.flagship-content h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.flagship-content p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.flagship-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.flagship-stat .num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  font-feature-settings: "tnum";
}
.flagship-stat .num .unit {
  font-size: 16px;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0;
}
.flagship-stat .label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}
.flagship-stat .sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   9. COALITION SECTION
   ============================================================ */
.coalition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}
@media (max-width: 900px) { .coalition-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .coalition-grid { grid-template-columns: 1fr; } }

.coalition-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px 26px;
  box-shadow: var(--shadow-sm);
}
.coalition-card .role-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.coalition-card .name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.coalition-card .blurb {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ============================================================
   10. DIFFERENTIATOR SECTION (the head-to-head)
   ============================================================ */
.differentiator {
  background: var(--ink);
  color: #f4f1ea;
  padding: 110px 0;
}
.differentiator .section-title { color: #f4f1ea; }
.differentiator .section-title em { color: var(--gold); }
.differentiator .section-lede { color: #cfcabe; }
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 40px;
}
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr; gap: 36px; } }

.diff-col h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  color: #f4f1ea;
}
.diff-col p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #cfcabe;
  margin-bottom: 14px;
}
.diff-col.us h3 { color: var(--gold); }
.diff-col.us p strong { color: #f4f1ea; }
.diff-line {
  margin-top: 32px;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: #e8e2d2;
  max-width: 56ch;
  line-height: 1.4;
}

/* ============================================================
   11. FAQ
   ============================================================ */
.faq-list {
  margin-top: 16px;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--t-quick);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 0 24px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 72ch;
}

/* ============================================================
   12. FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--surface-2);
  padding: 96px 0;
  border-top: 1px solid var(--hairline);
}
.final-cta-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 em { color: var(--brand); font-style: italic; }
.final-cta p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .hero-cta-row { justify-content: center; }

/* ============================================================
   13. FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: #cfcabe;
  padding: 64px 0 32px;
  font-size: 13px;
  line-height: 1.6;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 226, 210, 0.16);
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } }

.footer-brand .brand-mark { color: #f4f1ea; font-size: 22px; }
.footer-brand .brand-mark .dot { color: var(--gold); }
.footer-brand .tagline {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #b5ada0;
  max-width: 36ch;
  font-style: italic;
  font-family: var(--serif);
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #cfcabe; text-decoration: none; transition: color var(--t-quick); }
.footer-col a:hover { color: #f4f1ea; text-decoration: none; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #95897b;
}
.footer-bottom .legal { max-width: 64ch; }
.footer-trust {
  display: flex;
  gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* ============================================================
   14b. MULTI-PAGE ADDITIONS (added 2026-06-01 v2 refactor)
   ============================================================ */

/* nav active state */
.nav-links a[aria-current="page"] {
  color: var(--brand);
  position: relative;
}
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
}

/* page-hero: smaller hero used on interior pages */
.page-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
}
.page-hero .container { max-width: 1080px; }
.page-hero .eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.page-hero .page-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
  max-width: 24ch;
  font-weight: 500;
}
.page-hero .page-title em {
  font-style: italic;
  color: var(--brand);
}
.page-hero .page-lede {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 62ch;
}

/* "explore the platform" 6-card grid on home */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
@media (max-width: 900px) { .explore-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .explore-grid { grid-template-columns: 1fr; } }

.explore-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  text-decoration: none;
  transition: box-shadow var(--t-quick), transform var(--t-quick), border-color var(--t-quick);
  position: relative;
}
.explore-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  border-color: var(--border-strong);
  text-decoration: none;
}
.explore-card .ex-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.explore-card .ex-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.explore-card .ex-blurb {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.explore-card .ex-arrow {
  font-family: var(--sans);
  font-size: 20px;
  color: var(--brand);
  display: inline-block;
  margin-top: 16px;
  transition: transform var(--t-quick);
}
.explore-card:hover .ex-arrow { transform: translateX(3px); }

/* page sub-rule: lighter than .brand-rule for in-page hierarchy */
.sub-rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--border-strong);
  margin: 12px 0 18px;
}

/* "next strip" at bottom of each interior page */
.next-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 36px 0;
}
.next-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.next-prev a, .next-next a {
  color: var(--ink-2);
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.next-prev a:hover, .next-next a:hover { color: var(--brand); text-decoration: none; }
.next-label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}
.next-title {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.next-next { text-align: right; }

/* mini-CTA strip on interior pages */
.mini-cta {
  padding: 64px 0;
  text-align: center;
  background: var(--bg);
}
.mini-cta h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: -0.012em;
  margin-bottom: 16px;
}
.mini-cta p {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 auto 24px;
  line-height: 1.55;
}

/* on interior pages, .section uses 64px top padding instead of 96px */
.page-hero + .section { padding-top: 64px; }

/* ============================================================
   14. UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.no-wrap { white-space: nowrap; }
.gold { color: var(--gold); }
.brand-c { color: var(--brand); }
.italic { font-style: italic; }
