/* ==========================================================================
   PADE Services — site stylesheet
   Session 1: foundation & scaffold (design system, header, footer, shells)
   Palette is the LOCKED brand palette — 04-Marketing/Brand/brand-colors.md.
   Use these values and no others.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Brand palette (locked) */
  --pade-primary:      #F15B4D; /* buttons, CTAs, large accents */
  --pade-primary-deep: #CC3A24; /* small red text, links, button hover */
  --pade-accent:       #2A9DB0; /* secondary emphasis, icons (large/icon only) */
  --pade-ink:          #302826; /* body copy + headings */
  --pade-gray:         #6E6E70; /* captions, metadata, hairlines */
  --pade-sand:         #ECDCD3; /* section backgrounds, card fills */
  --pade-paper:        #FFF7F2; /* page background */
  --pade-white:        #FFFFFF;

  /* Type — primary (display/headings) DM Sans; secondary (body/UI) Overpass */
  --font-display: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Overpass", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --fs-hero:   clamp(2.4rem, 1.4rem + 3.8vw, 4rem);
  --fs-h1:     clamp(2rem, 1.4rem + 2.4vw, 3rem);
  --fs-h2:     clamp(1.5rem, 1.1rem + 1.6vw, 2.15rem);
  --fs-h3:     clamp(1.2rem, 1rem + 0.8vw, 1.5rem);
  --fs-lead:   clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  --fs-body:   1.0625rem;   /* 17px */
  --fs-small:  0.9375rem;   /* 15px */

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6.5rem;

  /* Layout */
  --content-max: 1140px;
  --content-narrow: 760px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(48, 40, 38, 0.08);
  --shadow-md: 0 10px 30px rgba(48, 40, 38, 0.10);
  --hairline: 1px solid rgba(48, 40, 38, 0.12);

  --header-h: 74px;
}

/* ---- Reset-ish ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--pade-ink);
  background: var(--pade-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pade-primary-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--pade-ink); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; color: var(--pade-ink); font-weight: 600; margin: 0 0 var(--space-2); }
h1 { font-size: var(--fs-h1); letter-spacing: -0.01em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.01em; }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 var(--space-2); }

/* ---- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--content-max); margin-inline: auto; padding-inline: var(--space-3); }
.container--narrow { max-width: var(--content-narrow); }
.section { padding-block: var(--space-6); }
.section--sand { background: var(--pade-sand); }
.section--ink { background: var(--pade-ink); color: var(--pade-paper); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--pade-paper); }
.eyebrow {
  font-family: var(--font-body); font-size: var(--fs-small); font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--pade-primary-deep);
  margin: 0 0 var(--space-1);
}
.lead { font-size: var(--fs-lead); color: var(--pade-ink); }
.muted { color: var(--pade-gray); }

/* ---- Buttons ------------------------------------------------------------ */
/* Primary CTA: #F15B4D fill with WHITE BOLD label (brand rule: buttons/large
   text only on primary). Hover deepens to #CC3A24 for stronger contrast. */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  line-height: 1; text-decoration: none; cursor: pointer;
  padding: 0.85em 1.4em; border-radius: var(--radius); border: 2px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary { background: var(--pade-primary); color: var(--pade-white); }
.btn--primary:hover { background: var(--pade-primary-deep); color: var(--pade-white); }
.btn--outline { background: transparent; color: var(--pade-primary-deep); border-color: var(--pade-primary-deep); }
.btn--outline:hover { background: var(--pade-primary-deep); color: var(--pade-white); }
.btn--on-ink { background: var(--pade-primary); color: var(--pade-white); }
.btn--on-ink:hover { background: var(--pade-white); color: var(--pade-primary-deep); }

/* ---- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 247, 242, 0.92);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: var(--hairline);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--pade-ink); }
.brand:hover { color: var(--pade-ink); }
.brand img { width: 38px; height: 38px; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.01em; }
.brand__name span { color: var(--pade-primary-deep); }

.nav { display: flex; align-items: center; gap: var(--space-3); }
.nav a {
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: var(--pade-ink); text-decoration: none; padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--pade-primary-deep); border-bottom-color: var(--pade-primary); }
.nav a[aria-current="page"] { color: var(--pade-primary-deep); border-bottom-color: var(--pade-primary); }

/* mobile nav toggle (checkbox hack, no JS) */
.nav-toggle, .nav-toggle-label { display: none; }

@media (max-width: 860px) {
  .nav-toggle-label {
    display: inline-flex; flex-direction: column; gap: 5px;
    padding: 10px; cursor: pointer; background: none; border: 0;
  }
  .nav-toggle-label span { width: 26px; height: 2px; background: var(--pade-ink); display: block; border-radius: 2px; }
  .nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--pade-paper); border-bottom: var(--hairline);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav a { padding: 0.9rem var(--space-3); border-bottom: var(--hairline); }
  .nav a:hover { border-bottom-color: rgba(48,40,38,0.12); background: var(--pade-sand); }
  .nav .btn { margin: var(--space-2) var(--space-3); justify-content: center; }
  .nav-toggle:checked ~ .nav { max-height: 420px; }
}

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--pade-ink); color: var(--pade-sand); padding-block: var(--space-6) var(--space-4); }
.site-footer a { color: var(--pade-paper); }
.site-footer a:hover { color: var(--pade-primary); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-4); }
.site-footer .brand__name { color: var(--pade-paper); }
.site-footer .brand__name span { color: var(--pade-primary); }
.footer-col h4 { color: var(--pade-paper); font-family: var(--font-body); font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-2); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-tagline { color: var(--pade-sand); max-width: 34ch; margin-top: var(--space-2); }
.footer-bottom {
  margin-top: var(--space-5); padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 247, 242, 0.18);
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-4);
  align-items: center; justify-content: space-between;
  font-size: var(--fs-small); color: var(--pade-gray);
}
.footer-bottom a { color: var(--pade-sand); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ---- Scaffold placeholder banner (removed as sections get built) -------- */
.scaffold-note {
  background: repeating-linear-gradient(45deg, var(--pade-sand), var(--pade-sand) 12px, #e4d2c8 12px, #e4d2c8 24px);
  color: var(--pade-ink); text-align: center; font-size: var(--fs-small);
  padding: 0.6rem var(--space-3); border-bottom: var(--hairline);
}
.scaffold-note strong { color: var(--pade-primary-deep); }

/* ---- Hero (Session 2) --------------------------------------------------- */
.hero {
  padding-block: clamp(2.5rem, 2rem + 3vw, var(--space-7)) var(--space-6);
  background:
    radial-gradient(1100px 520px at 88% -20%, rgba(42,157,176,0.14), transparent 60%),
    var(--pade-paper);
  border-bottom: var(--hairline);
}
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-5); align-items: center; }
.hero h1 { font-size: var(--fs-hero); max-width: 19ch; text-wrap: balance; margin-bottom: var(--space-3); }
.hero .lead { max-width: 50ch; color: var(--pade-ink); }
.hero .cta-row { margin-top: var(--space-4); }

.hero-card { background: var(--pade-white); border: var(--hairline); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-md); }
.hero-card__title { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; margin: 0 0 var(--space-2); }
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li { display: flex; gap: 0.8rem; padding: 0.85rem 0; border-bottom: var(--hairline); }
.feature-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.feature-list .ico { flex: none; width: 26px; height: 26px; color: var(--pade-accent); margin-top: 2px; }
.feature-list strong { display: block; font-family: var(--font-display); font-weight: 600; }
.feature-list .desc { display: block; color: var(--pade-gray); font-size: var(--fs-small); line-height: 1.45; }
.hero-card__foot { margin: var(--space-3) 0 0; font-size: var(--fs-small); font-weight: 700; color: var(--pade-primary-deep); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ---- Positioning band (Session 2) --------------------------------------- */
.band__head { max-width: 32ch; }
.statement { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h2); line-height: 1.14; letter-spacing: -0.01em; margin: 0 0 var(--space-3); }
.statement em { font-style: normal; color: var(--pade-primary-deep); }
.band__lead { max-width: 62ch; font-size: var(--fs-lead); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-5); }
.pillar { background: var(--pade-paper); border-radius: var(--radius); padding: var(--space-3); border-top: 3px solid var(--pade-primary); box-shadow: var(--shadow-sm); }
.pillar h3 { font-size: var(--fs-h3); margin-bottom: var(--space-1); }
.pillar p { margin: 0; color: var(--pade-ink); font-size: var(--fs-small); line-height: 1.6; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* ---- Section stubs (remaining placeholder sections) --------------------- */
.section-stub { min-height: 40vh; display: grid; place-content: center; text-align: center; }
.section-stub .eyebrow { justify-self: center; }

/* ---- Services page (Session 3) ------------------------------------------ */
/* Page header — slim hero variant for interior pages */
.page-head {
  padding-block: clamp(2.5rem, 2rem + 3vw, var(--space-7)) var(--space-5);
  background:
    radial-gradient(1000px 460px at 90% -30%, rgba(42,157,176,0.13), transparent 60%),
    var(--pade-paper);
  border-bottom: var(--hairline);
}
.page-head h1 { font-size: var(--fs-hero); max-width: 16ch; margin-bottom: var(--space-3); }
.page-head .lead { max-width: 58ch; color: var(--pade-ink); }

/* Tier section header (eyebrow + heading + intro) */
.tier__head { max-width: 60ch; margin-bottom: var(--space-4); }
.tier__head .lead { margin: var(--space-2) 0 0; color: var(--pade-ink); }

/* Service card grid */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.service-card {
  background: var(--pade-white); border: var(--hairline); border-radius: var(--radius);
  padding: var(--space-3); box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.section--sand .service-card { background: var(--pade-paper); }
.service-card h3 { font-size: var(--fs-h3); margin-bottom: var(--space-1); }
.service-card p { margin: 0; color: var(--pade-ink); font-size: var(--fs-small); line-height: 1.6; }
.service-card--lead { border-top: 3px solid var(--pade-primary); }

/* Smooth hover — card lifts, shadow deepens, border warms toward brand red */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(241, 91, 77, 0.35);
}
/* Keep the lead card's red top accent on hover (border-color would fade it) */
.service-card--lead:hover { border-top-color: var(--pade-primary); }

@media (prefers-reduced-motion: reduce) {
  .service-card { transition: none; }
  .service-card:hover { transform: none; }
}

/* Compact capability list inside cards (home Services overview) */
.svc-list { list-style: none; margin: var(--space-2) 0 0; padding: 0; }
.svc-list li {
  position: relative; padding: 0.35rem 0 0.35rem 1.1rem;
  font-size: var(--fs-small); line-height: 1.5; color: var(--pade-ink);
  border-top: var(--hairline);
}
.svc-list li:first-child { border-top: 0; }
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: 0.85rem;
  width: 0.4rem; height: 0.4rem; border-radius: 999px; background: var(--pade-primary);
}

/* Small pill tag (small red text uses primary-deep per brand rule) */
.tag {
  display: inline-block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--pade-primary-deep);
  background: var(--pade-sand); border-radius: 999px; padding: 0.2rem 0.6rem;
  margin-bottom: var(--space-2);
}
.section--sand .tag { background: var(--pade-white); }

/* Network coverage callout */
.network-note {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-4);
  align-items: center; background: var(--pade-sand);
  border-radius: var(--radius-lg); padding: var(--space-4);
}
.network-note h2 { margin-bottom: var(--space-2); }
.network-note p { margin: 0; }
.network-list { list-style: none; margin: 0; padding: 0; }
.network-list li {
  padding: 0.75rem 0; border-bottom: var(--hairline);
  font-family: var(--font-display); font-weight: 600;
}
.network-list li:last-child { border-bottom: 0; padding-bottom: 0; }

/* Centered closing CTA (ink band) */
.section-cta { text-align: center; max-width: 58ch; margin-inline: auto; }
.section-cta .cta-row { justify-content: center; }

/* Advisory — two-facet band (Session 2) */
.facet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.facet-grid .service-card { padding: var(--space-4); }
.facet-grid .service-card p { font-size: var(--fs-body); }

@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .network-note { grid-template-columns: 1fr; gap: var(--space-3); } .facet-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .service-grid { grid-template-columns: 1fr; } }

/* ---- Team page (Session 4) ---------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.team-card { text-align: center; }
.team-card__photo {
  width: 200px; height: 200px; margin: 0 auto var(--space-3);
  border-radius: 50%; overflow: hidden; background: var(--pade-sand);
  box-shadow: var(--shadow-md);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h2 { font-size: var(--fs-h3); margin-bottom: 0.15rem; }
.team-card__title {
  font-family: var(--font-body); font-size: var(--fs-small); font-weight: 600;
  color: var(--pade-accent); margin: 0 0 0.35rem;
}
.team-card__creds {
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--pade-gray);
  margin: 0 0 var(--space-2);
}
.team-card__creds a { color: var(--pade-primary-deep); text-decoration: none; }
.team-card__creds a:hover { text-decoration: underline; }
.team-card__bio { text-align: left; color: var(--pade-ink); font-size: var(--fs-small); line-height: 1.62; margin: 0; }
.team-card__bio--draft { color: var(--pade-gray); font-style: italic; }
.team-card__bio .tag { font-style: normal; margin: 0 0 0 0.35rem; vertical-align: middle; }

@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; gap: var(--space-5); max-width: 440px; margin-inline: auto; } }

/* Compact variant — homepage teaser strip (name, title, one line, links to Team) */
.team-grid--compact { gap: var(--space-4); margin-top: var(--space-5); }
.team-card--compact .team-card__photo { width: 132px; height: 132px; margin-bottom: var(--space-2); box-shadow: var(--shadow-sm); }
.team-card--compact h3 { font-size: var(--fs-h3); margin-bottom: 0.1rem; }
.team-card__line {
  text-align: center; color: var(--pade-ink); font-size: var(--fs-small);
  line-height: 1.5; margin: 0.4rem auto 0; max-width: 30ch;
}

/* ---- Why PADE (Session 5) ----------------------------------------------- */
/* Closing differentiator band on the ink section. On the dark ground the
   eyebrow + statement accent switch from primary-deep to primary (large text
   only — contrast rule), and copy runs on sand/paper. */
.section--ink .eyebrow { color: var(--pade-primary); }
.section--ink .statement { color: var(--pade-paper); }
.section--ink .statement em { color: var(--pade-primary); }
.section--ink .band__lead { color: var(--pade-sand); }

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4);
  margin-top: var(--space-5); text-align: left;
}
.why-item { padding-top: var(--space-2); border-top: 3px solid var(--pade-primary); }
.why-item__num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.06em; color: var(--pade-primary);
  margin-bottom: var(--space-1);
}
.why-item h3 { color: var(--pade-paper); font-size: var(--fs-h3); margin-bottom: var(--space-1); }
.why-item p { margin: 0; color: var(--pade-sand); font-size: var(--fs-small); line-height: 1.6; }

.why-cta { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-top: var(--space-6); }

/* Secondary button on the ink band — outline in paper, fills on hover */
.btn--ghost-ink { background: transparent; color: var(--pade-paper); border-color: rgba(255, 247, 242, 0.45); }
.btn--ghost-ink:hover { background: var(--pade-paper); color: var(--pade-ink); border-color: var(--pade-paper); }

@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; gap: var(--space-4); } }

/* ---- Contact page (Session 5) ------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-5); align-items: start; }
.contact-methods h2 { font-size: var(--fs-h2); margin-bottom: var(--space-3); }

.method-list { list-style: none; margin: 0 0 var(--space-4); padding: 0; }
.method-list li { display: flex; gap: 0.9rem; padding: var(--space-3) 0; border-bottom: var(--hairline); }
.method-list li:first-child { padding-top: 0; }
.method-list .ico { flex: none; width: 26px; height: 26px; color: var(--pade-accent); margin-top: 3px; }
.method-label {
  display: block; font-family: var(--font-body); font-size: var(--fs-small);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--pade-gray);
}
.method-value { display: inline-block; font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; color: var(--pade-primary-deep); text-decoration: none; }
.method-value:hover { color: var(--pade-ink); text-decoration: underline; }

.contact-aside { background: var(--pade-sand); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-sm); }
.contact-aside__title { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; margin: 0 0 var(--space-2); }
.expect-list { margin: 0 0 var(--space-3); padding-left: 1.2rem; }
.expect-list li { margin-bottom: var(--space-2); font-size: var(--fs-small); line-height: 1.55; }
.expect-list li::marker { color: var(--pade-primary); font-weight: 700; }
.expect-list strong, .contact-aside__foot strong { font-family: var(--font-display); }
.contact-aside__foot { margin: 0; padding-top: var(--space-3); border-top: var(--hairline); font-size: var(--fs-small); color: var(--pade-ink); }

@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: var(--space-4); } }

/* Trust strip (Contact fold-in — adapted from live contact page value props) */
.trust-strip {
  list-style: none; margin: var(--space-4) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3);
}
.trust-chip {
  padding: var(--space-3); background: var(--pade-white);
  border: var(--hairline); border-radius: var(--radius);
  border-left: 3px solid var(--pade-primary);
  font-size: var(--fs-small); line-height: 1.5; color: var(--pade-ink);
}
.trust-chip__title {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: var(--fs-body); color: var(--pade-primary-deep); margin-bottom: 0.25rem;
}
@media (max-width: 820px) { .trust-strip { grid-template-columns: 1fr; gap: var(--space-2); } }

/* ---- Utilities ---------------------------------------------------------- */
.stack > * + * { margin-top: var(--space-2); }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--pade-ink); color: #fff;
  padding: 0.6rem 1rem; z-index: 100; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--pade-accent); outline-offset: 2px; }

/* Legal / long-form pages (Privacy Policy) */
.legal-meta { margin: var(--space-2) 0 0; color: var(--pade-gray); font-size: var(--fs-small); }
.legal { max-width: var(--content-narrow); }
.legal h2 { font-size: var(--fs-h3); margin: var(--space-5) 0 var(--space-2); }
.legal h2:first-child { margin-top: 0; }
.legal p { margin: 0 0 var(--space-2); }
.legal-list { margin: 0 0 var(--space-2); padding-left: 1.2rem; }
.legal-list li { margin-bottom: var(--space-1); }
.legal-list li::marker { color: var(--pade-primary); }
