*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --ink:    #1a1e2a;
      --mid:    #4a5068;
      --faint:  #8a90a6;
      --rule:   #d8dae4;
      --accent: #1f4b8e;
      --bg:     #fafaf8;
    }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--ink);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      -webkit-font-smoothing: antialiased;
    }
    header {
      padding: 1.75rem 3rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      border-bottom: 1px solid var(--rule);
      position: sticky;
      top: 0;
      background: var(--bg);
      z-index: 100;
    }
    .wordmark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--ink);
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      transition: color 0.15s;
    }
    .wordmark:hover { color: var(--accent); }
    .pipe { color: var(--rule); font-weight: 300; flex-shrink: 0; }
    .tagline-head {
      font-size: 0.73rem;
      font-weight: 400;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: var(--faint);
    }
    .header-nav {
      margin-left: auto;
      display: flex;
      gap: 1.75rem;
      align-items: center;
    }
    .header-nav a {
      font-size: 0.73rem;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--mid);
      text-decoration: none;
      transition: color 0.15s;
    }
    .header-nav a:hover { color: var(--accent); }
    .header-nav a.active { color: var(--accent); }

    main {
      flex: 1;
      padding: 5rem 3rem 4rem;
      max-width: 720px;
    }
    .page-label {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.25rem;
      opacity: 0.8;
    }
    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4.5vw, 3.2rem);
      font-weight: 600;
      line-height: 1.1;
      color: var(--ink);
      margin-bottom: 2.5rem;
      letter-spacing: -0.01em;
    }
    .body-text {
      font-size: 0.98rem;
      font-weight: 300;
      line-height: 1.85;
      color: var(--mid);
    }
    .body-text p {
      margin-bottom: 1.5rem;
    }
    .body-text p:last-child { margin-bottom: 0; }

    .pull-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 2.5vw, 1.75rem);
      font-style: italic;
      font-weight: 400;
      color: var(--ink);
      line-height: 1.5;
      border-left: 3px solid var(--accent);
      padding: 0.75rem 0 0.75rem 1.75rem;
      margin: 2.5rem 0;
      opacity: 0.85;
    }

    .section-divider {
      border: none;
      border-top: 1px solid var(--rule);
      margin: 2.5rem 0;
    }

    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 1.25rem;
    }
    .credential-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .credential-list li {
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--mid);
      padding-left: 1.1rem;
      position: relative;
      line-height: 1.6;
    }
    .credential-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--rule);
    }

    .focus-area {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 1.5rem;
    }
    .tag {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid rgba(31, 75, 142, 0.35);
      border-radius: 2px;
      padding: 0.3rem 0.65rem;
    }

    .cta-block {
      margin-top: 2.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--rule);
    }
    .cta-block p {
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.7;
      margin-bottom: 1.25rem;
      max-width: 480px;
    }
    .btn-primary {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bg);
      background: var(--accent);
      border: none;
      padding: 0.9rem 2.2rem;
      cursor: pointer;
      border-radius: 2px;
      text-decoration: none;
      transition: opacity 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { opacity: 0.85; }

    footer {
      padding: 1.5rem 3rem;
      border-top: 1px solid var(--rule);
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-copy {
      font-size: 0.7rem;
      color: var(--faint);
      font-weight: 300;
    }
    .footer-links {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      font-size: 0.7rem;
      color: var(--faint);
      text-decoration: none;
      font-weight: 300;
      transition: color 0.15s;
    }
    .footer-links a:hover { color: var(--accent); }

    @media (max-width: 768px) {
      header { padding: 1.25rem 1.5rem; flex-wrap: wrap; }
      .tagline-head { display: none; }
      .header-nav { gap: 1rem; margin-left: auto; }
      main { padding: 3.5rem 1.5rem 3rem; }
      footer { padding: 1.25rem 1.5rem; flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 480px) {
      .header-nav a { font-size: 0.68rem; }
      .header-nav { gap: 0.75rem; }
    }
