@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,900&family=Karla:wght@400;500;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  color-scheme: light;
  --ink: #1c2019;
  --forest: #203c2f;
  --moss: #5c7a54;
  --bark: #6b4a34;
  --cream: #f3efe2;
  --paper: #fbf8f0;
  --amber: #c98a3b;
  --ink-muted: #535749;
  --ink-inverse: #fbf8f0;
  --forest-hover: #2c4d3b;
  --forest-pressed: #152d21;
  --amber-hover: #d79b4e;
  --amber-pressed: #b87b2f;
  --moss-wash: #e6e9dc;
  --amber-wash: #f0e1c8;
  --error: #963e28;
  --error-wash: #f8e9df;
  --success: #2e5437;
  --success-wash: #e6ecdd;
  --rule: rgb(107 74 52 / 25%);
  --rule-strong: rgb(107 74 52 / 55%);
  --rule-green: rgb(92 122 84 / 35%);
  --rule-inverse: rgb(251 248 240 / 25%);
  --surface: var(--cream);
  --surface-raised: var(--paper);
  --text: var(--ink);
  --text-secondary: var(--ink-muted);
  --link: var(--forest);
  --focus-color: var(--amber);
  --mire-692: 'Fraunces', Georgia, serif;
  --mire-9e1: 'Karla', 'Trebuchet MS', sans-serif;
  --mire-ca7: 'IBM Plex Mono', 'Courier New', monospace;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;
  --text-xs: clamp(.75rem, .73rem + .1vw, .8125rem);
  --text-sm: clamp(.875rem, .85rem + .14vw, .9375rem);
  --text-base: clamp(1rem, .96rem + .2vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.04rem + .4vw, 1.375rem);
  --text-xl: clamp(1.3rem, 1.13rem + .85vw, 1.875rem);
  --heading-sm: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  --heading-md: clamp(1.875rem, 1.35rem + 2.4vw, 3.5rem);
  --heading-lg: clamp(2.25rem, 1.5rem + 3.8vw, 5rem);
  --heading-xl: clamp(2.5rem, 1.15rem + 6.4vw, 6.75rem);
  --heading-display: clamp(2.625rem, 1.1rem + 7.2vw, 7.75rem);
  --leading-body: 1.6;
  --leading-tight: 1.06;
  --leading-display: 1.025;
  --leading-label: 1.3;
  --tracking-display: -.045em;
  --tracking-heading: -.025em;
  --tracking-meta: .065em;
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-30: 7.5rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --shell-max: 75rem;
  --reading-max: 44rem;
  --reading-narrow: 35rem;
  --section-space: clamp(4rem, 9vw, 7.5rem);
  --section-gap: clamp(2rem, 4vw, 3.5rem);
  --grid-gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 2px;
  --radius-small: 1px;
  --border-width: 1px;
  --tap-target: 2.75rem;
  --input-min-height: 3.125rem;
  --header-offset: 6rem;
  --consent-height: 8rem;
  --chat-offset: 1rem;
  --document-shadow: 0 8px 32px rgb(28 32 25 / 8%);
  --duration-instant: 80ms;
  --duration-fast: 140ms;
  --duration-control: 160ms;
  --duration-normal: 300ms;
  --duration-slow: 650ms;
  --duration-word: 850ms;
  --word-interval: 4400ms;
  --ease-standard: cubic-bezier(.2, .65, .3, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --ease-word: cubic-bezier(.22, .65, .28, 1);
  --layer-base: 0;
  --layer-header: 20;
  --layer-nav: 25;
  --layer-chat: 40;
  --layer-consent: 50;
  --layer-dialog: 60;
  --layer-skip: 100;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: var(--header-offset); }
body { margin: 0; min-width: 0; background: var(--cream); color: var(--ink); font-family: var(--mire-9e1); font-size: var(--text-base); font-weight: 400; line-height: var(--leading-body); -webkit-font-smoothing: antialiased; }
body, main, header, footer, section, article, aside, nav, form, fieldset, div { min-width: 0; }
h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding-inline-start: 1.4em; }
img, picture, video, canvas, svg { max-width: 100%; }
img, video { display: block; height: auto; }
iframe { max-width: 100%; border: 0; }
svg { vertical-align: middle; }
button, input, select, textarea { font: inherit; color: inherit; }
button, select { text-transform: none; }
button, input[type='submit'], input[type='reset'] { cursor: pointer; }
button { border-radius: var(--radius); }
input, select, textarea { min-width: 0; max-width: 100%; }
textarea { resize: vertical; }
fieldset { margin: 0; padding: 0; border: 0; }
legend { padding: 0; max-width: 100%; }
button:disabled, input:disabled, select:disabled, textarea:disabled { cursor: not-allowed; }
a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: .2em; overflow-wrap: anywhere; }
strong, b { font-weight: 700; }
small { font-size: var(--text-sm); }
sub, sup { position: relative; font-size: .75em; line-height: 0; vertical-align: baseline; }
sup { top: -.45em; }
sub { bottom: -.2em; }
hr { margin: var(--space-8) 0; border: 0; border-block-start: 1px solid var(--rule); }
address { font-style: normal; }
table { border-collapse: collapse; border-spacing: 0; width: 100%; text-align: start; }
caption { text-align: start; }
th { font-weight: 700; }
[hidden] { display: none !important; }
[inert] { pointer-events: none; }
::selection { color: var(--ink); background: var(--amber-wash); }
:focus { outline: none; }
:focus-visible { outline: 3px solid var(--focus-color); outline-offset: 4px; }
:target { scroll-margin-top: var(--header-offset); }

h1, h2, h3, h4, h5, h6, .display { font-family: var(--mire-692); font-optical-sizing: auto; font-weight: 400; line-height: var(--leading-tight); letter-spacing: var(--tracking-heading); overflow-wrap: anywhere; text-wrap: balance; }
h1 { font-size: var(--heading-xl); letter-spacing: var(--tracking-display); }
h2 { font-size: var(--heading-md); }
h3 { font-size: var(--heading-sm); }
h4 { font-size: var(--text-xl); }
h5, h6 { font-size: var(--text-lg); }
p { overflow-wrap: break-word; }
.display { font-size: var(--heading-display); letter-spacing: var(--tracking-display); line-height: var(--leading-display); }
.lead { font-size: var(--text-xl); line-height: 1.45; max-width: 48ch; }
.eyebrow, .meta { font-family: var(--mire-ca7); font-size: var(--text-xs); font-weight: 400; line-height: 1.65; letter-spacing: var(--tracking-meta); }
.eyebrow { color: var(--bark); text-transform: uppercase; }
.meta { color: var(--ink-muted); }
.numeric, .price, time, code, kbd, samp { font-family: var(--mire-ca7); font-variant-numeric: tabular-nums; }
code { font-size: .87em; overflow-wrap: anywhere; padding: .12em .3em; background: var(--moss-wash); }
pre { max-width: 100%; overflow-x: auto; padding: var(--space-5); background: var(--paper); border: 1px solid var(--rule); }
pre code { padding: 0; background: none; overflow-wrap: normal; }
kbd { padding: .1em .35em; border: 1px solid var(--rule-strong); border-radius: var(--radius); font-size: .85em; }
.muted { color: var(--ink-muted); }
.text-small { font-size: var(--text-sm); }
.text-balance { text-wrap: balance; }
.text-left { text-align: start; }
.text-center { text-align: center; }
.text-right { text-align: end; }

.prose { max-width: var(--reading-max); overflow-wrap: break-word; }
.prose > * + * { margin-block-start: 1.25em; }
.prose > h2 { margin-block-start: 1.8em; }
.prose > h3 { margin-block-start: 1.65em; }
.prose > :first-child { margin-block-start: 0; }
.prose :is(h2, h3, h4) + * { margin-block-start: .8em; }
.prose p { max-width: 68ch; }
.prose li + li { margin-block-start: .6em; }
.prose li > :is(ul, ol) { margin-block-start: .6em; }
.prose li::marker { color: var(--bark); }
.prose blockquote { padding: var(--space-5) 0 var(--space-5) var(--space-6); border-inline-start: 2px solid var(--amber); font-family: var(--mire-692); font-size: var(--text-xl); line-height: 1.4; }
.prose blockquote cite { display: block; margin-block-start: var(--space-4); font-family: var(--mire-9e1); font-size: var(--text-sm); font-style: normal; }
.prose dl { display: grid; gap: var(--space-3); }
.prose dt { font-weight: 700; }
.prose dd { padding-block-end: var(--space-4); }
.prose figure { margin-block: var(--space-10); }
.prose figcaption { margin-block-start: var(--space-3); font-size: var(--text-sm); color: var(--ink-muted); }
.prose a { font-weight: 500; }
.prose abbr[title] { text-decoration-style: dotted; text-underline-offset: .2em; }

.shell, .container { width: min(calc(100% - var(--gutter) * 2), var(--shell-max)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.section--compact { padding-block: var(--section-gap); }
.section--ruled { border-block-start: 1px solid var(--rule); }
.reading-width { width: 100%; max-width: var(--reading-max); }
.narrow-width { width: 100%; max-width: var(--reading-narrow); }
.stack { display: flex; flex-direction: column; gap: var(--stack-gap, var(--space-6)); }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: var(--cluster-gap, var(--space-4)); }
.cluster > *, .stack > * { min-width: 0; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--grid-gap); align-items: start; }
.grid { display: grid; gap: var(--grid-gap); }
.grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid > *, .split > * { min-width: 0; }
.flow > * + * { margin-block-start: var(--flow-space, var(--space-6)); }
.align-start { align-items: start; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.full-width { width: 100%; }
.rule { border-block-start: 1px solid var(--rule); }
.paper { background: var(--paper); }
.visually-hidden, .sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); pointer-events: none; }
.icon { display: inline-block; flex: 0 0 auto; width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.2em; }
.icon--small { width: 1rem; height: 1rem; }
.icon--large { width: 1.5rem; height: 1.5rem; }
.js-only { display: none; }
.js .js-only { display: initial; }
.js .no-js-only { display: none; }

@media (min-width: 90rem) {
  :root { --header-offset: 6.5rem; }
  .reading-width { max-width: 46rem; }
}
@media (max-width: 48rem) {
  .grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 36rem) {
  :root { --header-offset: 5rem; }
  .grid--two, .grid--three { grid-template-columns: minmax(0, 1fr); }
  .prose blockquote { padding-inline-start: var(--space-4); }
}
@media (prefers-reduced-motion: reduce) {
  :root { --duration-instant: 0ms; --duration-fast: 0ms; --duration-control: 0ms; --duration-normal: 0ms; --duration-slow: 0ms; --duration-word: 0ms; }
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
@media (forced-colors: active) {
  :root { --rule: CanvasText; --rule-strong: CanvasText; --rule-inverse: CanvasText; --focus-color: Highlight; }
  a { color: LinkText; }
  :focus-visible { outline-color: Highlight; }
}
@media print {
  :root { --cream: #fff; --paper: #fff; --ink: #000; --ink-muted: #333; }
  body { font-size: 11pt; }
  .shell, .container { width: 100%; max-width: none; }
  h1, h2, h3, h4 { break-after: avoid; }
  p, li { orphans: 3; widows: 3; }
  figure, tr { break-inside: avoid; }
  .section { padding-block: 1.5rem; }
  a { color: #000; }
  .no-print { display: none !important; }
}
