:root {
  --ink: #17221d;
  --muted: #66716b;
  --green: #173f31;
  --green-2: #28604a;
  --cream: #f6f2e8;
  --gold: #c9a966;
  --line: #dfe5df;
  --white: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; line-height: 1.65; }
a { color: var(--green-2); }
img { display: block; max-width: 100%; height: auto; border-radius: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 76px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: rgba(23,63,49,.96);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.brand { color: inherit; text-decoration: none; font-weight: 650; letter-spacing: .02em; }
.brand span { color: var(--gold); font-family: Georgia, serif; font-size: 1.45rem; }
.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a { color: inherit; text-decoration: none; font-size: .92rem; }
.site-nav a:hover { color: var(--gold); }
.menu-toggle { display: none; border: 1px solid rgba(255,255,255,.4); border-radius: 8px; padding: .45rem .75rem; color: white; background: transparent; }

main { min-height: 72vh; }
.page-label { max-width: 1120px; margin: 0 auto; padding: 3rem 4vw 0; color: var(--green-2); font-size: .78rem; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; }
.content-shell { max-width: 1120px; margin: 0 auto; padding: 1rem 4vw 5rem; overflow: hidden; }
.content-shell > :first-child { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.15; color: var(--green); }
h1 { margin: .35em 0 .45em; font-size: clamp(2.6rem, 6vw, 5.4rem); letter-spacing: -.045em; }
h2 { margin-top: 2.2em; font-size: clamp(1.7rem, 3vw, 2.8rem); letter-spacing: -.025em; }
h3 { margin-top: 1.8em; font-size: 1.35rem; }
p, li { max-width: 76ch; }
ul, ol { padding-left: 1.25rem; }
blockquote { margin: 2rem 0; padding: 1.25rem 1.5rem; border-left: 4px solid var(--gold); background: rgba(255,255,255,.65); }
table { width: 100%; border-collapse: collapse; background: white; }
th, td { padding: .8rem; border: 1px solid var(--line); text-align: left; }
.content-shell a { font-weight: 650; text-underline-offset: 3px; }
.content-shell a:has(svg), .content-shell a.elementor-button { display: inline-flex; align-items: center; gap: .65rem; margin: .4rem .5rem .4rem 0; padding: .8rem 1.15rem; border-radius: 999px; color: white; background: var(--green); text-decoration: none; }
.content-shell a svg { width: 1rem; height: 1rem; fill: currentColor; }

.post .content-shell { max-width: 980px; }
.post .content-shell > img:first-of-type { float: right; max-width: min(42%, 420px); margin: 0 0 2rem 3rem; background: white; }
.home-page .page-label { display: none; }
.home-page .content-shell { padding-top: 4rem; }

.site-footer { display: flex; justify-content: space-between; gap: 2rem; padding: 2.5rem 5vw; color: rgba(255,255,255,.78); background: #102d23; }
.site-footer strong { color: white; }
.site-footer nav { display: flex; flex-wrap: wrap; align-content: flex-start; gap: .5rem 1rem; }
.site-footer a { color: inherit; }

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 1rem 5vw 1.5rem; background: var(--green); }
  .site-nav.is-open { display: flex; }
  .post .content-shell > img:first-of-type { float: none; max-width: 100%; margin: 0 0 2rem; }
  .site-footer { flex-direction: column; }
}
