:root { color-scheme: light; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #faf6ef;
  color: #2e2621;
  font-family: 'Karla', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: #b4653f; text-decoration: none; }
a:hover { color: #8f4c2c; text-decoration: underline; }

.topbar {
  position: sticky; top: 0; z-index: 10;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e8dfd2;
}
.topbar .inner {
  max-width: 820px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 600; color: #2e2621; }
.back { font-size: 14px; font-weight: 600; white-space: nowrap; }

main { max-width: 820px; margin: 0 auto; padding: 56px 24px 72px; }
h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(32px, 6vw, 46px); font-weight: 500; line-height: 1.1; margin: 0 0 10px; }
.lede { color: #7a6d5e; font-size: 15px; margin: 0 0 8px; }
.updated { color: #9a8c7a; font-size: 13px; margin: 0 0 40px; }
h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px; font-weight: 600; margin: 42px 0 12px; }
p, li { font-size: 16px; color: #4d4238; }
ul { padding-left: 22px; }
li { margin: 4px 0; }
strong { color: #2e2621; }

.ph {
  background: #f6e8de; border-bottom: 1px dashed #b4653f;
  padding: 1px 5px; border-radius: 3px; font-weight: 600; color: #8f4c2c;
}
.note {
  background: #ffffff; border: 1px solid #e8dfd2; border-left: 3px solid #b4653f;
  border-radius: 10px; padding: 16px 18px; font-size: 14px; color: #4d4238; margin: 26px 0;
}
.dl { display: grid; grid-template-columns: max-content 1fr; gap: 6px 18px; margin: 8px 0 0; }
.dl dt { font-weight: 700; color: #7a6d5e; }
.dl dd { margin: 0; }

.pagefoot { border-top: 1px solid #e8dfd2; margin-top: 24px; }
.pagefoot .inner {
  max-width: 820px; margin: 0 auto; padding: 26px 24px;
  display: flex; gap: 8px 16px; flex-wrap: wrap; align-items: center;
  font-size: 14px; color: #7a6d5e;
}
.pagefoot .sep { color: #d8ccb9; }
.pagefoot .spacer { flex: 1; }

@media (max-width: 560px) {
  .dl { grid-template-columns: 1fr; gap: 2px 0; }
  .dl dd { margin: 0 0 10px; }
}
