:root {
  color-scheme: light;
  --canvas: #fff8fb;
  --surface: #ffffff;
  --blush: #fff0f5;
  --plum: #5b2d56;
  --night: #1a1224;
  --text: #1d1422;
  --muted: #6e6072;
  --border: #ecdde6;
  --accent: #ff6b9d;
  --radius: 24px;
  --space: 8px;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-padding-top: 24px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--canvas); color: var(--text); font: 1rem/1.75 var(--body); }
a { color: var(--plum); text-underline-offset: 4px; text-decoration-thickness: 1px; overflow-wrap: anywhere; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, summary:focus-visible { outline: 3px solid var(--plum); outline-offset: 4px; border-radius: 4px; }
.skip { position: absolute; top: 8px; left: 16px; padding: 8px 16px; background: var(--surface); transform: translateY(-200%); z-index: 2; }
.skip:focus { transform: translateY(0); }
.shell { width: min(100% - 40px, 880px); margin-inline: auto; }
.site-header { padding-block: 32px 24px; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; min-height: 44px; color: var(--night); font: 600 2.5rem/1.2 var(--display); letter-spacing: -1px; text-decoration: none; }
.brand::after { content: ""; width: 8px; height: 8px; margin: 0 0 16px 8px; border-radius: 50%; background: var(--accent); }
.nav { display: flex; flex-wrap: wrap; gap: 4px; }
.nav a { display: flex; align-items: center; min-height: 44px; padding: 8px 12px; border-radius: 14px; color: var(--muted); font-size: .875rem; font-weight: 600; text-decoration: none; }
.nav a[aria-current="page"] { background: var(--blush); color: var(--plum); }
main { padding-block: 48px; }
.eyebrow { margin: 0 0 8px; color: var(--plum); font-size: .8125rem; font-weight: 700; letter-spacing: .08em; }
h1, h2, h3 { color: var(--night); text-wrap: pretty; }
h1 { margin: 0 0 16px; font: 600 clamp(2.25rem, 7vw, 3.25rem)/1.2 var(--display); letter-spacing: -.025em; }
h2 { margin: 0 0 16px; font: 600 1.625rem/1.3 var(--display); }
h3 { margin: 24px 0 8px; font-size: 1rem; line-height: 1.5; }
p { margin: 0 0 16px; overflow-wrap: anywhere; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
.lead { max-width: 65ch; font-size: 1.125rem; line-height: 1.65; color: var(--muted); }
.updated { margin: 16px 0 32px; color: var(--muted); font-size: .8125rem; }
.card { padding: 32px; margin-block: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.note { background: var(--blush); }
.note strong { color: var(--plum); }
.toc { display: flex; flex-wrap: wrap; column-gap: 24px; row-gap: 0; margin-bottom: 32px; }
.toc a { display: flex; align-items: center; min-height: 44px; font-size: .875rem; }
ul, ol { margin: 0 0 16px; padding-left: 24px; }
li { padding-left: 4px; margin-bottom: 8px; overflow-wrap: anywhere; }
li:last-child { margin-bottom: 0; }
.contact { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; max-width: 100%; padding: 12px 24px; border-radius: 18px; background: var(--plum); color: #fff; font-weight: 600; text-decoration: none; }
.contact:hover { background: var(--night); }
.contact-row { margin-top: 24px; }
.small { color: var(--muted); font-size: .875rem; }
.operator { font-size: .8125rem; overflow-wrap: anywhere; }
details { border-bottom: 1px solid var(--border); padding-block: 16px; }
details:last-child { border-bottom: 0; padding-bottom: 0; }
summary { min-height: 44px; padding-block: 8px; color: var(--plum); font-weight: 600; cursor: pointer; line-height: 1.5; }
details[open] summary { margin-bottom: 8px; }
.site-footer { padding-block: 24px 40px; border-top: 1px solid var(--border); }
.site-footer .nav { margin: 0 0 16px -12px; }
.site-footer p { margin-bottom: 8px; }
@media (max-width: 480px) {
  .shell { width: calc(100% - 32px); }
  .site-header { padding-block: 24px 16px; }
  .header-inner { align-items: flex-start; gap: 12px; }
  .header-inner > .nav { width: 100%; margin-left: -8px; }
  .nav a { padding-inline: 8px; }
  main { padding-block: 32px; }
  .card { padding: 24px 20px; }
  h2 { font-size: 1.5rem; }
  .site-footer .nav { margin-left: -8px; }
}
@media print {
  body { background: #fff; color: #000; font-size: 11pt; }
  .shell { width: 100%; }
  .nav, .skip, .toc { display: none; }
  .card { padding: 16px 0; border: 0; border-radius: 0; background: #fff; }
  h2, h3 { break-after: avoid; }
  .contact { padding: 0; background: none; color: #000; }
}
