:root {
  color-scheme: light;
  --paper: #fffdf8;
  --ink: #29201b;
  --muted: #65534a;
  --accent: #943c17;
  --saffron: #f6b73c;
  --line: #dfd1bf;
  --panel: #fff1ce;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 100%;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); line-height: 1.65; border-top: .5rem solid var(--saffron); }
a { color: var(--accent); text-underline-offset: .2em; text-decoration-thickness: .08em; overflow-wrap: anywhere; }
a:hover { text-decoration-thickness: .14em; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; border-radius: 2px; }
.skip { position: absolute; top: .7rem; left: 1rem; padding: .7rem 1rem; background: var(--paper); transform: translateY(-180%); z-index: 1; }
.skip:focus { transform: none; }
.shell { width: min(68rem, calc(100% - 3rem)); margin-inline: auto; }
.site-header { display: flex; justify-content: space-between; align-items: center; gap: 1rem 2rem; padding-block: 1.25rem; border-bottom: 1px solid var(--line); }
.brand { font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 700; color: var(--ink); text-decoration: none; }
nav { display: flex; flex-wrap: wrap; gap: .25rem 1.4rem; }
nav a { display: inline-flex; align-items: center; min-height: 44px; font-size: 1rem; }
nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }
main { padding-block: 3.5rem 4.5rem; }
h1, h2, h3 { line-height: 1.16; text-wrap: balance; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -.035em; margin: .6rem 0 1.25rem; max-width: 15ch; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -.025em; margin: 0 0 1rem; }
h3 { font-size: 1.1rem; margin: 0 0 .65rem; }
p { margin: 0 0 1rem; }
.eyebrow { color: var(--accent); font-size: .9rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.intro { font-size: 1.2rem; max-width: 43rem; color: var(--muted); }
.hero { padding-bottom: 2.5rem; }
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 3.5rem; align-items: center; }
.practice-sequence { margin: 0; padding: 1.1rem 1.8rem; list-style: none; background: var(--panel); border-top: 4px solid var(--accent); }
.practice-sequence li { display: grid; grid-template-columns: 2rem 1fr; gap: .5rem; padding-block: 1.2rem; border-bottom: 1px solid #d4bb85; }
.practice-sequence li:last-child { border: 0; }
.practice-sequence .number { color: var(--accent); font-size: .9rem; padding-top: .15rem; }
.practice-sequence strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.6rem; font-weight: 400; line-height: 1.2; }
.practice-sequence p { margin: .3rem 0 0; color: var(--muted); }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; padding-top: 2.4rem; border-top: 1px solid var(--line); }
.features p { color: var(--muted); }
.reading { max-width: 48rem; }
.reading section { margin-top: 2.5rem; }
.reading h1 { max-width: none; }
.reading h2 { font-size: 1.8rem; }
.reading ul, .reading ol { padding-left: 1.4rem; }
.reading li { margin-block: .45rem; }
.contact { padding: 1.7rem; background: var(--panel); border-left: 4px solid var(--accent); margin-block: 2rem; }
.contact h2 { margin-top: 0; }
.contact p:last-child { margin-bottom: 0; }
.date { font-size: .95rem; color: var(--muted); }
.faq { padding-block: 1.6rem; border-top: 1px solid var(--line); }
.faq:last-child { border-bottom: 1px solid var(--line); }
.faq h2 { font-family: inherit; font-weight: 650; font-size: 1.2rem; margin-bottom: .7rem; }
.faq p:last-child { margin-bottom: 0; }
.site-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; border-top: 1px solid var(--line); padding-block: 1.5rem 2rem; color: var(--muted); font-size: .95rem; }
.site-footer p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; }
@media (max-width: 48rem) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .features { grid-template-columns: 1fr; gap: 1.4rem; }
  main { padding-block: 2.5rem 3rem; }
}
@media (max-width: 30rem) {
  .shell { width: calc(100% - 2rem); }
  .site-header { align-items: flex-start; flex-direction: column; gap: .2rem; }
  nav { gap: .25rem 1.1rem; }
  .contact, .practice-sequence { padding: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; } }
@media print {
  body { border: 0; background: white; }
  .shell { width: 100%; }
  .skip, nav { display: none; }
  main { padding-block: 1rem; }
  .contact, .practice-sequence { background: none; }
  a { color: inherit; }
}
