:root {
  --ink: #071a37;
  --ink-2: #10284d;
  --ivory: #fbf8f0;
  --ivory-2: #f6f1e6;
  --paper: #fffdf8;
  --sage: #65775c;
  --sage-soft: #eef2e7;
  --gold: #cf9a30;
  --gold-soft: #f3dfb1;
  --muted: #4e5a68;
  --line: rgba(12, 34, 61, 0.14);
  --line-warm: rgba(183, 145, 64, 0.28);
  --shadow: 0 24px 80px rgba(7, 26, 55, 0.10);
  --shadow-soft: 0 14px 42px rgba(7, 26, 55, 0.07);
  --max: 1180px;
  --serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.narrow { width: min(100% - 48px, 1030px); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--ink);
  background: white;
}

.skip-link:focus { left: 12px; }

.visually-hidden {
  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;
  inset: 0 0 auto 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(251, 248, 240, 0.92), rgba(251, 248, 240, 0.62) 70%, rgba(251, 248, 240, 0));
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand,
.footer-brand {
  position: relative;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 500;
}

.brand::after {
  position: absolute;
  left: 66%;
  bottom: -7px;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  margin-left: auto;
  color: var(--ink-2);
  font-size: 0.96rem;
  font-weight: 720;
  letter-spacing: -0.015em;
}

.site-nav a {
  position: relative;
  opacity: 0.94;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1.5px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 220ms ease;
}

.site-nav a:hover::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  letter-spacing: -0.015em;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(7, 26, 55, 0.16);
}

.button-primary:hover { box-shadow: 0 18px 42px rgba(7, 26, 55, 0.20); }

.button-accent {
  color: #211604;
  background: linear-gradient(180deg, #e7b94e, var(--gold));
  box-shadow: 0 14px 34px rgba(207, 154, 48, 0.22);
}

.text-link,
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2e4f35;
  font-weight: 780;
  letter-spacing: -0.015em;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover,
.cta-link:hover { gap: 14px; color: var(--ink); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 740px;
  overflow: hidden;
  background: var(--ivory);
}

.hero::after {
  position: absolute;
  right: -3vw;
  bottom: -72px;
  left: -3vw;
  z-index: -1;
  height: 170px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--ivory-2);
  content: "";
}

.hero-image {
  position: absolute;
  inset: 0 0 auto auto;
  z-index: -3;
  width: min(64vw, 980px);
  height: 620px;
  overflow: hidden;
}

.hero-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--ivory) 0%, rgba(251, 248, 240, 0.92) 9%, rgba(251, 248, 240, 0.55) 23%, rgba(251, 248, 240, 0.10) 48%),
    linear-gradient(180deg, rgba(251, 248, 240, 0.26), rgba(251, 248, 240, 0.02) 42%, rgba(251, 248, 240, 0.32) 100%);
  content: "";
}

.hero-motif svg {
  width: 100%;
  height: 100%;
}

.hero-grid {
  display: grid;
  min-height: 740px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.9fr);
  align-items: center;
  padding-top: 78px;
}

.hero-copy {
  max-width: 660px;
  padding: 72px 0 98px;
}

h1,
h2,
h3,
p { margin: 0; }

h1,
h2 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(4.2rem, 7.1vw, 6.9rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.02;
}

h3 {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.hero-rule {
  width: 98px;
  height: 3px;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-text {
  max-width: 540px;
  margin-top: 25px;
  color: #27374a;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.68;
  letter-spacing: -0.012em;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}

.outcomes {
  position: relative;
  padding: 46px 0 54px;
  background: var(--ivory-2);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.outcome-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 22px;
  align-content: start;
  padding: 28px 38px;
  border-left: 1px solid var(--line-warm);
}

.outcome-item:first-child { border-left: 0; }

.line-icon,
.role-icon {
  color: var(--sage);
}

.line-icon svg,
.role-icon svg,
.cta-mark svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon { width: 33px; height: 33px; margin-top: 1px; }

.outcome-item p {
  grid-column: 2;
  margin-top: 10px;
  color: #27374a;
  font-size: 0.98rem;
  line-height: 1.58;
}

.process {
  padding: 78px 0 76px;
  background: linear-gradient(180deg, var(--paper), #fcfaf4);
}

.process h2 {
  text-align: center;
  font-size: clamp(2.15rem, 3vw, 3.05rem);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 62px 0 0;
  padding: 0;
  list-style: none;
}

.process-line::before {
  position: absolute;
  top: 20px;
  left: 9%;
  right: 9%;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(101, 119, 92, 0.3), rgba(101, 119, 92, 0.92), rgba(101, 119, 92, 0.3));
  content: "";
}

.process-line li {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.step-dot {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(101, 119, 92, 0.28);
  border-radius: 50%;
  color: #152514;
  background: var(--sage-soft);
  font-weight: 760;
}

.process-line h3 { margin-top: 22px; }
.process-line p {
  max-width: 145px;
  margin-top: 8px;
  color: #334154;
  font-size: 0.95rem;
  line-height: 1.48;
}

.roles {
  padding: 54px 0 82px;
  background: var(--paper);
}

.roles-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.roles-copy { max-width: 860px; }

.roles-copy h2 {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(2.1rem, 3.2vw, 3.45rem);
}

.roles-copy h2::after {
  display: block;
  width: 48px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.role-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 48px;
}

.role-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 18px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line-warm);
}

.role-item:nth-child(odd) { border-right: 1px solid var(--line-warm); }
.role-item:nth-last-child(-n+2) { border-bottom: 0; }

.role-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
}

.role-icon svg { width: 24px; height: 24px; }

.role-item p {
  margin-top: 8px;
  color: #344155;
  font-size: 0.96rem;
  line-height: 1.48;
}


.proof {
  padding: 0 0 0;
  background: var(--paper);
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  padding: clamp(38px, 5vw, 62px);
  border: 1px solid rgba(184, 165, 128, 0.24);
  border-radius: 16px;
  background: linear-gradient(135deg, #fbf8ee, #fffdf8 58%, #f5f0e5);
  box-shadow: 0 18px 70px rgba(7, 26, 55, 0.055);
}

.proof-copy h2 {
  max-width: 430px;
  font-size: clamp(2.35rem, 3.9vw, 4rem);
}

.proof-copy h2::after {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.proof-copy > p {
  max-width: 430px;
  margin-top: 20px;
  color: #2f3c4d;
  font-size: 1.08rem;
  line-height: 1.66;
}

.proof-list {
  display: grid;
  gap: 15px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  position: relative;
  padding-left: 30px;
  color: #27364a;
}

.proof-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--sage);
  font-size: 12px;
  line-height: 18px;
  content: "✓";
}

.proof-list strong { display: block; font-weight: 780; }
.proof-list span { display: block; color: #4d5967; font-size: 0.95rem; }

.artifact-label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.quote-card {
  position: relative;
  margin: 0;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid rgba(7, 26, 55, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.quote-card blockquote {
  position: relative;
  margin: 22px 0 0;
  padding: 0;
}

.quote-card blockquote::before {
  position: absolute;
  top: -34px;
  left: -6px;
  color: var(--gold);
  content: "\201C";
  font-family: var(--serif);
  font-size: 4.6rem;
  line-height: 1;
  opacity: 0.55;
}

.quote-card blockquote p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.22rem, 1.9vw, 1.42rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.quote-card figcaption {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-warm);
  color: var(--muted);
  font-size: 0.92rem;
}

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 72px;
  color: white;
  background: radial-gradient(circle at 0% 0%, #18375f 0%, #071a37 44%, #051126 100%);
}

.cta::before,
.cta::after {
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(207, 154, 48, 0.28);
  border-radius: 50%;
  content: "";
}

.cta::before { left: -260px; bottom: -260px; }
.cta::after { right: -240px; top: 20px; }

.cta-inner {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 7vw, 90px) 0;
}

.cta-mark {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.cta-mark svg { width: 34px; height: 34px; }

.cta h2 {
  color: white;
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
}

.cta p {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.cta-link { color: rgba(255, 255, 255, 0.88); }
.cta-link:hover { color: white; }

.footer {
  color: #5d6470;
  background: var(--ivory);
  font-size: 0.9rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 20px 0;
}

.footer-brand {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.footer nav {
  display: flex;
  gap: 26px;
}

.footer a:hover { color: var(--ink); }

.animate-in {
  animation: fade-up 620ms cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

.delay-1 { animation-delay: 90ms; }
.delay-2 { animation-delay: 180ms; }
.delay-3 { animation-delay: 270ms; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1060px) {
  .header-cta { display: none; }
  .site-nav { gap: 22px; }
  .hero-image { width: 68vw; opacity: 0.82; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-item:nth-child(3) { border-left: 0; }
  .outcome-item { border-top: 1px solid var(--line-warm); }
  .outcome-item:nth-child(-n+2) { border-top: 0; }
  .proof-panel { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(100% - 28px, var(--max)); }
  .site-header {
    position: sticky;
    background: rgba(251, 248, 240, 0.94);
  }
  .header-inner { padding: 14px 0; }
  .brand { font-size: 2rem; }
  .site-nav { display: none; }
  .hero { min-height: auto; }
  .hero::after { height: 86px; bottom: -45px; }
  .hero-image {
    position: relative;
    width: 100%;
    height: 320px;
    margin-top: 64px;
    opacity: 1;
  }
  .hero-image::before {
    background: linear-gradient(180deg, rgba(251,248,240,0.0), rgba(251,248,240,0.18) 60%, var(--ivory));
  }
  .hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column-reverse;
    align-items: stretch;
    padding-top: 0;
  }
  .hero-copy { padding: 22px 0 58px; }
  h1 { font-size: clamp(3.15rem, 13vw, 4.3rem); }
  .hero-text { font-size: 1.05rem; line-height: 1.62; }
  .hero-actions { gap: 18px; }
  .button { width: 100%; }
  .text-link { justify-content: center; width: 100%; }
  .outcomes { padding: 38px 0; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-item,
  .outcome-item:nth-child(n) {
    grid-template-columns: 30px 1fr;
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--line-warm);
  }
  .outcome-item:first-child { border-top: 0; }
  .process { padding: 58px 0; }
  .process h2 { text-align: left; }
  .process-line {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 34px;
  }
  .process-line::before {
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: auto;
    width: 1.5px;
    height: auto;
    background: linear-gradient(180deg, rgba(101, 119, 92, 0.3), rgba(101, 119, 92, 0.92), rgba(101, 119, 92, 0.3));
  }
  .process-line li {
    grid-template-columns: 42px 1fr;
    column-gap: 18px;
    justify-items: start;
    text-align: left;
  }
  .process-line h3 { margin-top: 0; }
  .process-line p { grid-column: 2; max-width: 100%; }
  .roles { padding: 30px 0 58px; }
  .roles-copy h2 { text-align: left; }
  .roles-copy h2::after { margin-left: 0; }
  .role-list { grid-template-columns: 1fr; margin-top: 28px; }
  .role-item,
  .role-item:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid var(--line-warm);
    padding: 20px 0;
  }
  .role-item:last-child { border-bottom: 0; }
  .proof-panel {
    width: auto;
    padding: 28px 20px;
    border-radius: 14px;
  }
  .quote-card { padding: 24px; }
  .artifact-label { text-align: left; }
  .cta { margin-top: 44px; }
  .cta-inner { padding: 46px 0; }
  .cta-mark { width: 52px; height: 52px; }
  .cta-actions { width: 100%; }
  .cta-link { justify-content: center; width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 10px; text-align: center; }
  .footer nav { justify-content: center; flex-wrap: wrap; gap: 16px; }
}

/* Proof section sizing (desktop) */
@media (min-width: 1061px) {
  .proof-panel {
    grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(46px, 5vw, 72px);
    align-items: center;
  }

  .quote-card {
    padding: clamp(30px, 3vw, 44px);
  }
}

@media (max-width: 760px) {
  .hero-copy {
    padding-top: 16px;
  }
  .proof-panel {
    margin-inline: -2px;
  }
}

/* Overflow guards for the proof panel */
.proof-panel,
.quote-card {
  max-width: 100%;
}

.quote-card {
  overflow: hidden;
}

/* ============================================================
   Legal / content pages (Privacy, Terms, DPA)
   ============================================================ */
.legal-main {
  padding-top: 92px;
  background: var(--paper);
}

.legal-hero {
  background: linear-gradient(180deg, var(--ivory-2), var(--paper));
  border-bottom: 1px solid var(--line-warm);
}

.legal-hero .container {
  padding: 46px 0 40px;
}

.legal-eyebrow {
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 4.6vw, 3.7rem);
  line-height: 1.02;
}

.legal-hero h1::after {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.legal-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-meta span { display: inline-block; margin-right: 18px; }
.legal-meta strong { color: var(--ink); font-weight: 760; }

.legal-body { padding: 14px 0 84px; }

.legal-doc {
  max-width: 820px;
  margin-inline: auto;
}

.legal-intro {
  margin: 30px 0 8px;
  color: #2f3c4d;
  font-size: 1.12rem;
  line-height: 1.7;
}

.legal-doc h2 {
  margin: 42px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
  scroll-margin-top: 110px;
}

.legal-doc h3 {
  margin: 26px 0 8px;
  font-size: 1.06rem;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.legal-doc p {
  margin: 0 0 14px;
  color: #2a384a;
  font-size: 1.02rem;
  line-height: 1.72;
}

.legal-doc ul {
  margin: 0 0 18px;
  padding-left: 4px;
  list-style: none;
}

.legal-doc li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 26px;
  color: #2a384a;
  font-size: 1.02rem;
  line-height: 1.62;
}

.legal-doc li::before {
  position: absolute;
  top: 0.62em;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.legal-doc strong { font-weight: 760; color: var(--ink); }

.legal-doc h2 + p,
.legal-doc h3 + p { margin-top: 0; }

.legal-note {
  display: flex;
  gap: 12px;
  margin: 24px 0 8px;
  padding: 16px 18px;
  border: 1px solid var(--line-warm);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  background: var(--ivory-2);
  color: #3a4658;
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-toc {
  margin: 28px 0 8px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.legal-toc p {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 28px;
  margin: 0;
  padding-left: 20px;
  color: #2e4f35;
  font-size: 0.96rem;
}

.legal-toc a { color: #2e4f35; font-weight: 600; }
.legal-toc a:hover { color: var(--ink); text-decoration: underline; }

.legal-related {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line-warm);
}

.legal-related a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 720;
  font-size: 0.95rem;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.legal-related a:hover { border-color: var(--sage); background: var(--sage-soft); }

@media (max-width: 760px) {
  .legal-main { padding-top: 0; }
  .legal-hero .container { padding: 30px 0 26px; }
  .legal-toc ol { grid-template-columns: 1fr; }
  .legal-meta span { display: block; margin: 0 0 6px; }
}
