:root {
      --blue: #233f75;
      --cream: #fffdf8;
      --sand: #f6efe4;
      --text: #222220;
      --muted: #66645f;
      --line: rgba(25, 25, 25, .12);
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      background: var(--cream);
      color: var(--text);
      font-family: var(--sans);
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; }
    .wrap { width: min(860px, calc(100% - 40px)); margin: 0 auto; padding: 40px 0 72px; }
    .top { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding-bottom: 36px; }
    .logo { width: 150px; height: auto; display: block; }
    .back { color: var(--blue); font-size: 13px; font-weight: 900; text-decoration: none; border-bottom: 1px solid currentColor; }
    main { border-top: 1px solid var(--line); padding-top: 56px; }
    .eyebrow { margin: 0 0 14px; color: #73726d; font-size: 11px; line-height: 1.25; font-weight: 800; text-transform: uppercase; }
    h1 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 7vw, 64px); line-height: 1.02; }
    .lead { margin: 22px 0 34px; color: var(--muted); font-size: 16px; line-height: 1.75; font-weight: 600; }
    section { padding: 26px 0; border-top: 1px solid var(--line); }
    h2 { margin: 0 0 12px; font-size: 19px; line-height: 1.3; }
    p, li { color: var(--muted); font-size: 14px; line-height: 1.7; font-weight: 600; }
    ul { margin: 12px 0 0; padding-left: 20px; }
    .meta { margin-top: 16px; color: #77736b; font-size: 13px; line-height: 1.6; font-weight: 700; }
