/* Hallmark · genre: editorial · theme: custom (ink/grey/white) · nav: N1 · footer: Ft4 */

  html, body { overflow-x: clip; }

  :root {
    --ink:          oklch(9% 0 0);
    --ink-2:        oklch(19% 0 0);
    --muted:        oklch(44% 0 0);
    --subtle:       oklch(62% 0 0);
    --faint:        oklch(76% 0 0);
    --paper:        oklch(98.5% 0 0);
    --paper-2:      oklch(96.5% 0 0);
    --paper-3:      oklch(93% 0 0);
    --rule:         oklch(89% 0 0);
    --rule-mid:     oklch(80% 0 0);
    --wash:         oklch(91% 0 0);
    --wash-text:    oklch(10% 0 0);
    --wash-muted:   oklch(44% 0 0);
    --wash-rule:    oklch(82% 0 0);
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --dur-short:    220ms;
    --font-display: 'Libre Caslon Text', Georgia, serif;
    --font-body:    'Source Serif 4', Georgia, serif;
    --font-label:   'Inter', system-ui, sans-serif;
    --px-page:      80px;
  }

  .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  }

  ::selection { background-color: var(--ink); color: var(--paper); }

  body {
    background-color: var(--paper);
    color: var(--ink-2);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .nav-root {
    background: oklch(98.5% 0 0 / 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
  }

  .nav-link {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color var(--dur-short) var(--ease-out);
  }
  .nav-link:hover  { color: var(--ink); }
  .nav-link.active { color: var(--ink); font-weight: 600; }
  .nav-link:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; border-radius: 1px; }

  .btn {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--dur-short) var(--ease-out),
                color var(--dur-short) var(--ease-out),
                border-color var(--dur-short) var(--ease-out);
  }
  .btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
  .btn:active { opacity: 0.82; }

  .btn-ink {
    background: var(--ink); color: var(--paper);
    border: 1px solid var(--ink); padding: 15px 36px;
  }
  .btn-ink:hover { background: transparent; color: var(--ink); }

  .btn-ink-sm {
    background: var(--ink); color: var(--paper);
    border: 1px solid var(--ink); padding: 12px 24px;
  }
  .btn-ink-sm:hover { background: transparent; color: var(--ink); }

  .btn-ghost {
    background: transparent; color: var(--muted);
    border: 1px solid var(--rule-mid); padding: 15px 36px;
  }
  .btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

  .eyebrow {
    font-family: var(--font-label);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--subtle);
  }

  /* Bullet list styling */
  .prose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .prose-list li {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 300;
    padding-left: 20px;
    position: relative;
    overflow-wrap: anywhere;
  }
  .prose-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--faint);
    font-family: var(--font-display);
  }

  /* FAQ items */
  .faq-item {
    border-top: 1px solid var(--rule);
    padding: 32px 0;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--rule); }

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  @media (max-width: 767px) {
    :root { --px-page: 24px; }
  }
