:root {
    --td-color-forest: #234236;
    --td-color-olive: #66735b;
    --td-color-sand: #e9e1d2;
    --td-color-cream: #f8f5ef;
    --td-color-ink: #202522;
    --td-color-white: #ffffff;
    --td-shadow-soft: 0 12px 36px rgba(32, 37, 34, 0.10);
    --td-radius: 14px;
    --td-container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--td-color-ink);
    background: var(--td-color-cream);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}
a { color: var(--td-color-forest); }
img { max-width: 100%; height: auto; }
.td-container { width: min(calc(100% - 2rem), var(--td-container)); margin-inline: auto; }
.site-header { background: rgba(248,245,239,.96); border-bottom: 1px solid rgba(35,66,54,.12); }
.site-header__inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-title { color: var(--td-color-forest); font-family: Georgia, serif; font-size: 1.35rem; font-weight: 700; text-decoration: none; }
.custom-logo { display: block; max-height: 54px; width: auto; }
.site-menu, .footer-menu { display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; list-style: none; }
.site-menu a, .footer-menu a { color: inherit; text-decoration: none; }
.site-content { min-height: 60vh; }
.td-content-shell { padding-block: clamp(2.5rem, 6vw, 6rem); }
.td-entry__title { margin-top: 0; font-family: Georgia, serif; font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1.1; }
.td-entry__content, .td-page__content { overflow-wrap: anywhere; }
.site-footer { padding-block: 3rem; color: var(--td-color-white); background: var(--td-color-forest); }
.site-footer__inner { display: grid; gap: 1.5rem; }
.site-footer__legal { opacity: .75; }
.td-empty-state { text-align: center; }
.td-empty-state__code { margin: 0; font-family: Georgia, serif; font-size: clamp(5rem, 20vw, 12rem); line-height: .9; opacity: .12; }
.td-button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: .75rem 1.15rem; color: #fff; background: var(--td-color-forest); border-radius: 999px; text-decoration: none; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { top: 8px; left: 8px; z-index: 100000; width: auto; height: auto; padding: .75rem 1rem; clip: auto; color: #fff; background: #000; }
@media (max-width: 760px) {
    .site-header__inner { align-items: flex-start; flex-direction: column; padding-block: 1rem; }
    .site-menu { gap: .75rem 1rem; }
}
