:root {
    --navy: #1B2A4A;          /* Founders Navy */
    --copper: #B87333;        /* Acquisition Copper */
    --copper-text: #9C5B28;   /* Higher-contrast copper for small text on light */
    --tinted-navy: #D6DCE8;
    --tinted-copper: #F5EBD9;
    --warm-white: #F9F7F5;
    --slate: #4A5568;         /* Body Slate */
    --meta-grey: #6B7280;
    --hairline: rgba(27, 42, 74, 0.16);
    --divider: rgba(184, 115, 51, 0.25);
    --copper-pale: #DCA26D;   /* Copper for small text on navy */
    --copper-light: #C78242;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
  }

  body {
    font-family: 'Carlito', 'Calibri', sans-serif;
    font-size: 15px;
    line-height: 1.62;
    background: var(--warm-white);
    color: var(--slate);
    overflow-x: hidden;
  }
  @media (max-width: 767px) { body { font-size: 16px; } }

  h1, h2, h3 {
    font-family: 'Caladea', 'Cambria', Georgia, serif;
    color: var(--navy);
    font-weight: 700;
  }

  ::selection { background: var(--tinted-navy); color: var(--navy); }

  a { color: var(--copper-text); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; transition: color 120ms ease; }
  a:hover { color: var(--navy); }

  :focus-visible { outline: 2px solid var(--copper); outline-offset: 2px; }

  .skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 300;
    background: var(--navy); color: #fff; padding: 10px 18px; text-decoration: none;
  }
  .skip-link:focus { left: 16px; top: 12px; color: #fff; }

  .container { max-width: 1440px; margin: 0 auto; padding-left: 96px; padding-right: 96px; }
  @media (max-width: 1279px) { .container { padding-left: 56px; padding-right: 56px; } }
  @media (max-width: 1023px) { .container { padding-left: 32px; padding-right: 32px; } }
  @media (max-width: 479px)  { .container { padding-left: 24px; padding-right: 24px; } }

  .eyebrow {
    font-family: 'Carlito', 'Calibri', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper-text);
    display: block;
    margin-bottom: 14px;
  }

  .lede {
    font-family: 'Caladea', 'Cambria', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.5;
    color: var(--navy);
  }

  /* ─── NAV ─── */
  .site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 68px;
    background: var(--navy);
    border-top: 3px solid var(--copper);
    border-bottom: 1px solid rgba(255,255,255,0.14);
    transition: border-color 120ms ease;
  }
  .site-nav.scrolled { border-bottom-color: rgba(184,115,51,0.5); }
  .site-nav .nav-inner {
    max-width: 1440px; margin: 0 auto; height: 100%;
    padding: 0 96px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  @media (max-width: 1279px) { .site-nav .nav-inner { padding: 0 56px; } }
  @media (max-width: 1023px) { .site-nav .nav-inner { padding: 0 32px; } }
  @media (max-width: 479px)  { .site-nav .nav-inner { padding: 0 24px; } }

  .nav-brand {
    font-family: 'Caladea', 'Cambria', Georgia, serif;
    font-weight: 700; font-size: 1.0625rem; letter-spacing: 0.02em;
    color: #FFFFFF; text-decoration: none; white-space: nowrap;
  }
  .nav-brand:hover { color: var(--copper-pale); }

  .nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
  .nav-links a {
    font-family: 'Carlito', 'Calibri', sans-serif;
    font-weight: 700; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.78); text-decoration: none; transition: color 120ms ease;
  }
  .nav-links a:hover { color: var(--copper-pale); }
  .nav-cta {
    border: 1px solid rgba(255,255,255,0.45); border-radius: 2px;
    padding: 8px 14px; color: #FFFFFF !important;
  }
  .nav-cta:hover { color: var(--copper-pale) !important; border-color: var(--copper); }

  .nav-menu-btn {
    display: none;
    font-family: 'Carlito', 'Calibri', sans-serif; font-weight: 700;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    background: none; border: 1px solid rgba(255,255,255,0.35); border-radius: 2px;
    color: #FFFFFF; padding: 8px 16px; cursor: pointer;
  }
  @media (max-width: 1023px) {
    .nav-links { display: none; }
    .nav-menu-btn { display: block; }
  }

  .nav-panel {
    display: none;
    position: fixed; inset: 0; z-index: 99;
    background: var(--warm-white);
    padding: 100px 32px 40px;
    flex-direction: column; gap: 0;
    overflow-y: auto;
  }
  .nav-panel.open { display: flex; }
  .nav-panel a {
    font-family: 'Carlito', 'Calibri', sans-serif; font-weight: 700;
    font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--navy); text-decoration: none;
    padding: 16px 0; border-bottom: 1px solid var(--hairline);
  }
  .nav-panel a:hover { color: var(--copper-text); }
  .nav-menu-btn { min-height: 44px; }
  .cookie-banner .btn { min-height: 44px; }
  .footer-col ul li { margin-bottom: 2px; }
  .footer-col ul a { display: inline-block; padding: 14px 0; line-height: 17px; }
  @media (pointer: fine) and (min-width: 1024px) { .footer-col ul a { padding: 11px 0; } }

  /* Marks a destination that exists only in English. */
  /* --copper-text is tuned for warm-white, not for the tinted-navy ground the
     auth notice uses: it measures 3.87:1 there. */
  .auth-notice a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }

  .lang-note { font-size: 0.82em; opacity: 0.62; letter-spacing: 0.02em; }

  .nav-panel-divider { border-top: 2px solid var(--copper); margin-top: 14px; padding-top: 14px; }

  /* ─── HERO ─── */
  .hero {
    padding: 168px 0 0;
    background: var(--navy);
    border-bottom: 3px solid var(--copper);
  }
  .hero .eyebrow { color: var(--copper-pale); }
  .hero h1 {
    font-size: clamp(42px, 5vw, 64px); line-height: 1.08; letter-spacing: -0.014em;
    max-width: 960px; margin-bottom: 26px; color: #FFFFFF;
  }
  .hero .lede {
    color: rgba(255,255,255,0.88);
    font-size: 19px;
    max-width: 680px; margin-bottom: 40px;
  }
  .hero .btn-primary { background: var(--copper); border-color: var(--copper); color: #0B1220; }
  .hero .btn-primary:hover { background: var(--copper-light); border-color: var(--copper-light); color: #0B1220; }
  .hero .btn-ghost { color: #FFFFFF; border-color: rgba(255,255,255,0.45); }
  .hero .btn-ghost:hover { color: var(--copper-pale); border-color: var(--copper-pale); }
  @media (max-width: 1023px) { .hero h1 { font-size: 38px; } }
  @media (max-width: 479px)  { .hero h1 { font-size: 30px; } .hero { padding-top: 132px; } }

  /* ─── PAGE HERO (interior page masthead) ─── */
  .page-hero {
    padding: 152px 0 56px;
    background: var(--navy);
    border-bottom: 3px solid var(--copper);
  }
  .page-hero .eyebrow { color: var(--copper-pale); }
  .page-hero h1 {
    font-size: clamp(34px, 4.2vw, 52px); line-height: 1.1; letter-spacing: -0.012em;
    max-width: 900px; margin: 14px 0 22px; color: #FFFFFF;
    padding-bottom: 0; border-bottom: 0;
  }
  .page-hero .lede { color: rgba(255,255,255,0.88); font-size: 18px; max-width: 680px; }
  .page-hero .hero-ctas { margin-top: 34px; margin-bottom: 0; }
  .page-hero .btn-primary { background: var(--copper); border-color: var(--copper); color: #0B1220; }
  .page-hero .btn-primary:hover { background: var(--copper-light); border-color: var(--copper-light); color: #0B1220; }
  .page-hero .btn-ghost { color: #FFFFFF; border-color: rgba(255,255,255,0.45); }
  .page-hero .btn-ghost:hover { color: var(--copper-pale); border-color: var(--copper-pale); }
  @media (max-width: 479px) { .page-hero { padding: 120px 0 44px; } }

  .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 64px; }

  /* Stat band: the numbers do the talking */
  .stat-band {
    display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  @media (max-width: 767px) { .stat-band { grid-template-columns: repeat(2, minmax(0,1fr)); } }
  .stat {
    padding: 30px 28px 34px 0;
  }
  .stat + .stat { padding-left: 28px; border-left: 1px solid rgba(255,255,255,0.14); }
  @media (max-width: 767px) {
    .stat:nth-child(3) { border-left: none; padding-left: 0; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.14); }
  }
  .stat .stat-num {
    font-family: 'Caladea', 'Cambria', Georgia, serif; font-weight: 700;
    font-size: clamp(34px, 3.4vw, 48px); line-height: 1; color: var(--copper-pale);
    display: block; margin-bottom: 10px;
  }
  .stat .stat-label { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.5; display: block; }

  .btn {
    display: inline-block;
    font-family: 'Carlito', 'Calibri', sans-serif; font-weight: 700;
    font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 13px 26px; border-radius: 2px; text-decoration: none;
    transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
    border: 1px solid var(--navy); cursor: pointer;
  }
  .btn-primary { background: var(--navy); color: #fff; }
  .btn-primary:hover { background: #142035; color: #fff; }
  .btn-ghost { background: transparent; color: var(--navy); }
  .btn-ghost:hover { color: var(--copper-text); border-color: var(--copper); }

  /* ─── SECTIONS ─── */
  section { padding: 76px 0 0; }
  section:last-of-type { padding-bottom: 76px; }

  .section-head { margin-bottom: 40px; }
  .section-head h1,
  .section-head h2 {
    font-size: clamp(28px, 3vw, 38px); line-height: 1.18;
    padding-bottom: 16px; border-bottom: 1px solid var(--navy);
    max-width: 860px;
  }
  .section-head .lede { margin-top: 18px; max-width: 720px; }

  .prose p { max-width: 720px; margin-bottom: 16px; }
  .prose p:last-child { margin-bottom: 0; }

  .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; }
  .grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 28px; }
  @media (max-width: 1023px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  @media (max-width: 639px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  }

  .card {
    background: #FFFFFF; border: 1px solid var(--hairline); border-radius: 2px;
    padding: 26px 24px;
  }
  .card h3 { font-size: 17px; margin-bottom: 4px; }
  .card .card-kicker {
    font-family: 'Carlito', 'Calibri', sans-serif; font-weight: 700;
    font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--copper-text); display: block; margin-bottom: 10px;
  }
  .card p { font-size: 14px; }
  .card .card-icon { margin-bottom: 16px; }
  .card .card-icon svg { display: block; }

  /* Convictions: rule-topped, no boxes */
  .convictions { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 28px; margin-top: 44px; }
  @media (max-width: 1023px) { .convictions { grid-template-columns: repeat(2, minmax(0,1fr)); } }
  @media (max-width: 639px) { .convictions { grid-template-columns: 1fr; } }
  .conviction { border-top: 2px solid var(--copper); padding-top: 16px; }
  .conviction .conviction-no {
    font-family: 'Caladea', 'Cambria', Georgia, serif; font-weight: 700;
    font-size: 15px; color: var(--copper-text); display: block; margin-bottom: 8px;
  }
  .conviction h3 { font-size: 16.5px; margin-bottom: 6px; }
  .conviction p { font-size: 14px; }

  .pull-quote {
    font-family: 'Caladea', 'Cambria', Georgia, serif; font-style: italic;
    font-size: 22px; line-height: 1.45; color: var(--navy);
    border-left: 2px solid var(--copper); padding: 6px 0 6px 24px;
    max-width: 680px; margin: 40px 0 0;
  }
  .pull-quote cite {
    display: block; font-family: 'Carlito', 'Calibri', sans-serif; font-style: normal;
    font-weight: 700; font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--meta-grey); margin-top: 10px;
  }

  /* Structure spectrum.
     The bar and the labels are one grid, so they cannot disagree. The previous
     version drew SVG ticks at 0/33/66/100% above legend columns that fell at
     0/25.6/51.2/76.8% -- neither tick marked anything, and a reader who noticed
     learned the diagram was ornamental.
     No string lives in an SVG, so nothing scales down with the viewport. */
  .structure-spectrum { max-width: 860px; margin: 36px 0 0; }

  .spectrum-ends {
    display: flex; justify-content: space-between; gap: 16px;
    font-family: 'Carlito', 'Calibri', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase;
    margin-bottom: 10px;
  }
  .spectrum-ends .end-owner { color: var(--copper-text); }
  .spectrum-ends .end-firm { color: var(--navy); text-align: right; }

  .spectrum-scale {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 24px; list-style: none; counter-reset: structure;
    background-image: linear-gradient(90deg, var(--copper) 0%, var(--navy) 100%);
    background-size: 100% 12px;
    background-repeat: no-repeat;
    padding-top: 26px;
  }
  .spectrum-scale > li {
    counter-increment: structure;
    border-top: 2px solid var(--copper);
    padding-top: 12px;
  }
  .spectrum-scale h3 { font-size: 15px; margin-bottom: 5px; color: var(--navy); }
  .spectrum-scale p { font-size: 13.5px; }

  .spectrum-scale .eg {
    display: block; margin-top: 8px; font-family: 'Carlito', 'Calibri', sans-serif;
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.13em;
    text-transform: uppercase; color: var(--copper-text);
  }
  /* The firm's own position, not an aside: sentence case, body size, and the
     weight the claim actually carries. MSG-043. */
  .spectrum-scale .eg-common {
    color: var(--navy); font-size: 13.5px; font-weight: 700;
    letter-spacing: 0; text-transform: none;
  }

  /* Stacked, the horizontal bar can no longer carry position, so the ordinal
     does. The sequence is the information here, which is what earns a number.
     It also settles an old mismatch: this was already an <ol> announcing
     "1 of 4" to screen readers while showing sighted users nothing. */
  @media (max-width: 899px) {
    .spectrum-scale {
      grid-template-columns: 1fr; gap: 22px;
      background-image: none; padding-top: 0;
    }
    .spectrum-scale > li { position: relative; padding-left: 38px; }
    .spectrum-scale > li::before {
      content: counter(structure);
      position: absolute; left: 0; top: 10px;
      font-family: 'Caladea', 'Cambria', Georgia, serif;
      font-size: 15px; font-weight: 700; color: var(--copper-text);
    }
    .spectrum-ends { display: none; }
  }

  .spectrum-rest { max-width: 860px; margin-top: 26px; font-size: 14px; }

  /* One of the two most reassuring blocks on the site; it was an inline-styled
     h3 reading as a caption between two full-weight sections. */
  .keeps-title {
    font-size: 17px; margin: 48px 0 4px; color: var(--navy);
    padding-bottom: 10px; border-bottom: 1px solid var(--hairline); max-width: 860px;
  }

  /* What does not change: two-column ledger */
  .keeps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0 40px; max-width: 980px; margin-top: 40px; list-style: none; }
  @media (max-width: 1023px) { .keeps { grid-template-columns: repeat(2, minmax(0,1fr)); } }
  @media (max-width: 639px) { .keeps { grid-template-columns: 1fr; } }
  .keeps li { padding: 14px 0; border-top: 1px solid var(--hairline); font-size: 14px; }
  .keeps li strong { color: var(--navy); display: block; }

  /* Integration timeline */
  .timeline { position: relative; margin-top: 48px; padding-top: 26px; }
  .timeline::before {
    content: ""; position: absolute; top: 5px; left: 6px; right: 6px;
    height: 2px; background: var(--divider);
  }
  .timeline-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 28px; }
  .tl-item { position: relative; }
  .tl-item::before {
    content: ""; position: absolute; top: -27px; left: 0;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--copper); border: 2px solid var(--warm-white);
    box-shadow: 0 0 0 1px var(--copper);
  }
  .tl-item .tl-when {
    font-family: 'Caladea', 'Cambria', Georgia, serif; font-weight: 700;
    font-size: 17px; color: var(--navy); display: block; margin-bottom: 6px;
  }
  .tl-item p { font-size: 13.5px; }
  @media (max-width: 767px) {
    .timeline::before { display: none; }
    .timeline { padding-top: 0; }
    .timeline-grid { grid-template-columns: 1fr; gap: 0; }
    .tl-item { padding: 14px 0 14px 24px; border-left: 2px solid var(--divider); }
    .tl-item::before { top: 20px; left: -7px; }
  }

  /* Six stages need three columns twice over, not four in a row. */
  .timeline-six .timeline-grid { grid-template-columns: repeat(3, minmax(0,1fr)); row-gap: 46px; }
  .timeline-six .tl-item:nth-child(n+4)::before { top: -27px; }
  .tl-title { font-size: 15px; margin: 2px 0 4px; color: var(--navy); }
  @media (max-width: 767px) { .timeline-six .timeline-grid { grid-template-columns: 1fr; row-gap: 0; } }

  /* Contact: the seller gets the page, not a third of a card row. */
  .contact-primary {
    background: var(--tinted-copper); border: 1px solid var(--divider);
    padding: 34px 32px; margin-top: 40px; max-width: 860px;
  }
  .contact-primary h3 { font-size: 22px; margin: 6px 0 12px; }
  .contact-primary p { max-width: 640px; }
  .contact-primary .hero-ctas { margin: 24px 0 0; }
  .contact-primary .btn-primary { background: var(--navy); border-color: var(--navy); color: #FFFFFF; }
  .contact-primary .btn-primary:hover { background: #24365D; border-color: #24365D; }
  .contact-promise { font-size: 13px; color: var(--meta-grey); margin-top: 16px; }
  .contact-line { margin-top: 10px; }
  .contact-primary + .grid-2 { margin-top: 28px; }
  @media (max-width: 479px) { .contact-primary { padding: 26px 20px; } }

  /* Daniel's title wraps to two lines and the others do not, which dropped his
     bio 16px below theirs. */
  .principal .role { display: block; min-height: 2.4em; }

  .note {
    font-size: 13px; color: var(--meta-grey); max-width: 720px; margin-top: 24px;
  }

  /* ─── COMMITMENTS ─── */
  .commitments-wrap {
    background: var(--tinted-copper);
    border: 1px solid var(--divider); border-radius: 2px;
    padding: 44px 48px;
  }
  @media (max-width: 639px) { .commitments-wrap { padding: 28px 24px; } }
  .commitments-list {
    list-style: none; counter-reset: commitment;
    display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 48px;
  }
  @media (max-width: 767px) { .commitments-list { grid-template-columns: 1fr; } }
  .commitments-list li {
    counter-increment: commitment;
    padding: 18px 0 18px 56px; position: relative;
    border-bottom: 1px solid var(--divider);
    font-size: 14.5px;
  }
  .commitments-list li::before {
    content: counter(commitment, decimal-leading-zero);
    position: absolute; left: 0; top: 16px;
    font-family: 'Caladea', 'Cambria', Georgia, serif; font-weight: 700;
    font-size: 19px; color: var(--copper-text);
  }
  .commitments-list li strong { color: var(--navy); display: block; margin-bottom: 2px; font-size: 15.5px; }
  .signature-row {
    display: flex; flex-wrap: wrap; gap: 48px;
    margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--divider);
  }
  .signature .sig-name {
    font-family: 'Caladea', 'Cambria', Georgia, serif; font-style: italic; font-weight: 700;
    font-size: 24px; color: var(--navy);
  }
  .signature .sig-role {
    font-family: 'Carlito', 'Calibri', sans-serif; font-weight: 700;
    font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--meta-grey); margin-top: 4px;
  }
  .commitments-meta {
    margin-top: 24px; font-size: 12px; color: var(--meta-grey);
    display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  }

  /* ─── STANDING (candor block) ─── */
  .standing {
    border: 1px solid var(--navy); border-radius: 2px;
    background: #FFFFFF;
    padding: 32px 36px; margin-top: 48px; max-width: 860px;
  }
  @media (max-width: 639px) { .standing { padding: 24px 20px; } }
  .standing h3 { font-size: 18px; margin-bottom: 10px; }
  .standing p { font-size: 14.5px; margin-bottom: 12px; }
  .standing p:last-child { margin-bottom: 0; }

  /* ─── GOVERNANCE TABLE ─── */
  .gov-table { width: 100%; max-width: 860px; border-collapse: collapse; font-size: 13.5px; margin-top: 24px; }
  .gov-table th {
    text-align: left; background: var(--tinted-navy); color: var(--navy);
    font-family: 'Carlito', 'Calibri', sans-serif; font-weight: 700;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 9px 12px; border: 1px solid var(--hairline);
  }
  .gov-table td { padding: 9px 12px; border: 1px solid var(--hairline); vertical-align: top; }
  .gov-table td:first-child { white-space: nowrap; font-weight: 700; color: var(--navy); }

  /* ─── FAQ ─── */
  .faq { max-width: 860px; }
  .faq details { border-bottom: 1px solid var(--hairline); }
  .faq details:first-of-type { border-top: 1px solid var(--hairline); }
  .faq summary {
    cursor: pointer; list-style: none;
    font-family: 'Caladea', 'Cambria', Georgia, serif; font-weight: 700;
    font-size: 16.5px; color: var(--navy);
    padding: 18px 36px 18px 0; position: relative;
    transition: color 120ms ease;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+";
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    font-family: 'Carlito', 'Calibri', sans-serif; font-weight: 400;
    font-size: 22px; color: var(--copper-text);
  }
  .faq details[open] summary::after { content: "\2212"; }
  .faq summary:hover { color: var(--copper-text); }
  .faq .faq-body { padding: 0 0 22px; max-width: 720px; }
  .faq .faq-body p { font-size: 14.5px; margin-bottom: 12px; }
  .faq .faq-body p:last-child { margin-bottom: 0; }

  /* ─── PRINT: commitments hand-off sheet ─── */
  @media print {
    body.print-commitments > *:not(main),
    body.print-commitments main > *:not(#commitments) { display: none !important; }
    body.print-commitments #commitments { padding: 0; }
    body.print-commitments .commitments-wrap { background: #fff; border: none; padding: 0; }
    body.print-commitments .print-hide { display: none !important; }
    .site-nav, .cookie-banner, .auth-notice { display: none !important; }
  }

  /* ─── PRINCIPALS ─── */
  .principal { display: flex; gap: 20px; align-items: flex-start; }
  .principal .monogram {
    flex: 0 0 56px; height: 56px; border: 1px solid var(--navy); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Caladea', 'Cambria', Georgia, serif; font-weight: 700;
    color: var(--navy); font-size: 17px; background: var(--tinted-navy);
  }
  .principal h3 { font-size: 18px; }
  .principal .role {
    font-family: 'Carlito', 'Calibri', sans-serif; font-weight: 700;
    font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--copper-text); display: block; margin: 4px 0 10px;
  }
  .principal p { font-size: 14px; }

  /* ─── DISCLOSURES (collapsed accordions) ─── */
  .disclosures { border-top: 1px solid var(--hairline); }
  .disclosures .faq-style { max-width: 860px; }
  .disclosures details { border-bottom: 1px solid var(--hairline); }
  .disclosures details:first-of-type { border-top: 1px solid var(--hairline); }
  .disclosures summary {
    cursor: pointer; list-style: none;
    font-family: 'Caladea', 'Cambria', Georgia, serif; font-weight: 700;
    font-size: 15.5px; color: var(--navy);
    padding: 15px 36px 15px 0; position: relative;
  }
  .disclosures summary::-webkit-details-marker { display: none; }
  .disclosures summary::after {
    content: "+";
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    font-family: 'Carlito', 'Calibri', sans-serif; font-weight: 400;
    font-size: 20px; color: var(--copper-text);
  }
  .disclosures details[open] summary::after { content: "\2212"; }
  .disclosures .disclosure-body { padding: 0 0 20px; }
  .disclosures .disclosure-body p { font-size: 13.5px; line-height: 1.7; color: var(--slate); margin-bottom: 10px; max-width: 820px; }

  .cookie-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 12px 0; }
  .cookie-table caption { text-align: left; font-size: 12px; color: var(--meta-grey); margin-bottom: 8px; }
  .cookie-table th {
    text-align: left; background: var(--tinted-navy); color: var(--navy);
    font-family: 'Carlito', 'Calibri', sans-serif; font-weight: 700;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 9px 12px; border: 1px solid var(--hairline);
  }
  .cookie-table td { padding: 9px 12px; border: 1px solid var(--hairline); vertical-align: top; }
  .table-scroll { overflow-x: auto; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy); color: rgba(255,255,255,0.82);
  }
  footer .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    padding: 56px 0 40px;
  }
  @media (max-width: 1023px) { footer .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 639px)  { footer .footer-grid { grid-template-columns: 1fr; } }
  footer .footer-brand {
    font-family: 'Caladea', 'Cambria', Georgia, serif; font-weight: 700;
    font-size: 1.0625rem; color: #fff; margin-bottom: 12px;
  }
  footer .footer-blurb { font-size: 13.5px; line-height: 1.7; max-width: 320px; color: rgba(255,255,255,0.72); }
  footer .footer-col-title {
    font-family: 'Carlito', 'Calibri', sans-serif; font-weight: 700;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--copper-pale); margin-bottom: 14px;
  }
  footer .footer-col ul { list-style: none; }
  footer .footer-col li { margin-bottom: 9px; }
  footer .footer-col a {
    color: rgba(255,255,255,0.82); text-decoration: none; font-size: 13.5px;
    transition: color 120ms ease;
  }
  footer .footer-col a:hover { color: var(--copper); }
  footer .footer-meta {
    border-top: 1px solid rgba(255,255,255,0.14);
    padding: 24px 0 8px;
    font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.8;
    display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  }
  footer .footer-legal {
    padding: 8px 0 48px;
    font-size: 11px; line-height: 1.8; color: rgba(255,255,255,0.55);
    max-width: 1100px;
  }
  footer .footer-legal a { color: rgba(255,255,255,0.7); }
  footer .footer-legal a:hover { color: var(--copper); }

  /* ─── COOKIE BANNER ─── */
  .cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: var(--warm-white);
    border-top: 1px solid var(--navy);
    padding: 18px 0;
    display: none;
  }
  .cookie-banner.visible { display: block; }
  .cookie-banner .cookie-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  }
  .cookie-banner p { font-size: 13.5px; max-width: 760px; color: var(--slate); }
  .cookie-banner .cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
  .cookie-banner .btn { padding: 10px 20px; }

  /* ─── AUTH NOTICE ─── */
  .auth-notice {
    display: none;
    background: var(--tinted-navy); border-bottom: 1px solid var(--hairline);
    padding: 12px 0; margin-top: 68px;
  }
  .auth-notice.visible { display: block; }
  .auth-notice p { font-size: 13.5px; color: var(--navy); }
  .auth-notice.visible + main .hero { padding-top: 100px; }

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