/* Dark fallback; explicit theme wins over the operating-system preference. */
:root {
  --lt-paper: #132725;
  --lt-ink: #e4ece8;
  --lt-muted: #abc0b9;
  --lt-accent: #e0a08b;
  --lt-line: #52746b;
  --lt-secondary: #1b322e;
  --lt-scheme: dark;
  --lt-display: 'Latura Fraunces', Georgia, 'Times New Roman', serif;
  --lt-body: 'Latura Atkinson', 'Trebuchet MS', Arial, sans-serif;
  --lt-support: 17px;
  --lt-nav-size: 18px;
  --lt-body-size: 19px;
  --lt-lede-size: 22px;
  --lt-brand-size: 32px;
  --lt-h1: clamp(48px, 5.7vw, 80px);
  --lt-h2: clamp(35px, 3.7vw, 52px);
  --lt-h3: 30px;
  --lt-leading: 1.55;
  --lt-heading-leading: 1.1;
  --lt-heading-weight: 500;
  --lt-heading-tracking: -.045em;
  --lt-brand-tracking: -.04em;
  --lt-space-1: 4px;
  --lt-space-2: 8px;
  --lt-space-3: 12px;
  --lt-space-4: 16px;
  --lt-space-5: 20px;
  --lt-space-6: 24px;
  --lt-space-7: 32px;
  --lt-space-8: 40px;
  --lt-space-9: 64px;
  --lt-space-10: 100px;
  --lt-gutter: 5vw;
  --lt-offset: 13vw;
  --lt-measure: 62ch;
  --lt-lede-measure: 55ch;
  --lt-page-width: 1440px;
  --lt-control-height: 48px;
  --lt-toggle-height: 44px;
  --lt-option-size: 20px;
  --lt-textarea-height: 130px;
  --lt-menu-width: 340px;
  --lt-border: 1px;
  --lt-underline-width: 2px;
  --lt-focus-width: 3px;
  --lt-focus-offset: 5px;
  --lt-progress-height: 5px;
  --lt-radius: 0;
  --lt-shadow: 0 16px 30px #0002;
  --lt-underline-duration: 160ms;
  --lt-menu-duration: 180ms;
  --lt-motion-easing: cubic-bezier(.2, .8, .2, 1);
  --lt-menu-start: translateY(-4px);
  --lt-menu-end: translateY(0);
  --lt-menu-opacity: .96;
  --lt-disabled-opacity: .65;
  --lt-hero-width: 147%;
  --lt-hero-mobile-width: 135%;
  --lt-hero-mobile-offset: 30%;
  --lt-hero-rotation: 12deg;
}
:root[data-theme="dark"], .lt-root[data-theme="dark"] {
  --lt-paper: #132725; --lt-ink: #e4ece8; --lt-muted: #abc0b9;
  --lt-accent: #e0a08b; --lt-line: #52746b; --lt-secondary: #1b322e;
  --lt-scheme: dark;
}
:root[data-theme="light"], .lt-root[data-theme="light"] {
  --lt-paper: #e4eef0; --lt-ink: #183b38; --lt-muted: #476461;
  --lt-accent: #963926; --lt-line: #9fb7b5; --lt-secondary: #d2e2e4;
  --lt-scheme: light;
}
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --lt-paper: #e4eef0; --lt-ink: #183b38; --lt-muted: #476461;
    --lt-accent: #963926; --lt-line: #9fb7b5; --lt-secondary: #d2e2e4;
    --lt-scheme: light;
  }
}
