:root {
  --bg-1: #f4efe7;
  --bg-2: #e9dfd0;
  --paper: rgba(255, 252, 247, 0.90);
  --ink: #1c1917;
  --muted: #6d6258;
  --line: rgba(120, 95, 76, 0.18);
  --accent: #9b3d1f;
  --accent-2: #2d6a73;
  --shadow: 0 18px 45px rgba(71, 48, 31, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(155, 61, 31, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(45, 106, 115, 0.10), transparent 24%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
}
a { color: var(--accent-2); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
.site-header-shell,
.page-shell,
.site-footer-shell { width: min(860px, calc(100% - 28px)); margin: 0 auto; }
.site-header-shell { padding-top: 22px; }
.page-shell { padding: 28px 0 56px; }
.site-header-bar,
.site-footer-bar,
.ficha-card {
  background: var(--paper);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.site-header-bar,
.site-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
}
.site-logo { width: 156px; height: auto; max-height: 42px; object-fit: contain; }
.site-logo--footer { width: 118px; max-height: 32px; }
.site-nav,
.site-footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.site-nav a,
.site-footer-links a { color: var(--ink); text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid transparent; }
.site-nav a:hover,
.site-footer-links a:hover { color: var(--accent-2); border-color: var(--accent-2); }
.ficha-card { padding: 28px; }
.eyebrow,
.label { color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; font-weight: 700; }
h1 { margin: 10px 0 12px; font-size: clamp(2.1rem, 4.4vw, 3.6rem); line-height: 0.98; letter-spacing: -0.05em; color: var(--accent); }
.standfirst { margin: 0 0 20px; max-width: 64ch; font-size: 1.15rem; line-height: 1.62; color: var(--ink); }
.meta-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 22px 0; }
.meta-card { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.58); padding: 14px; }
.meta-card p { margin: 6px 0 0; line-height: 1.55; }
.note { border-left: 4px solid var(--accent); background: rgba(155,61,31,0.08); border-radius: 0 14px 14px 0; padding: 14px 16px; margin: 24px 0; }
.content h2 { color: var(--accent); font-size: 1.45rem; letter-spacing: -0.03em; margin: 28px 0 12px; }
.content p { font-size: 1.08rem; line-height: 1.76; text-wrap: pretty; }
.nav-posts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.button-link { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 10px 16px; border: 1px solid rgba(45,106,115,0.22); border-radius: 999px; background: rgba(45,106,115,0.08); color: var(--accent-2); text-decoration: none; font-weight: 500; }
.button-link:hover { border-color: var(--accent-2); background: rgba(45,106,115,0.12); }
.site-footer-shell { margin-top: 20px; padding-bottom: 18px; }
.site-footer-bar p { margin: 0; color: var(--muted); font-size: 0.95rem; }
@media (max-width: 760px) {
  .page-shell,
  .site-header-shell,
  .site-footer-shell { width: min(100%, calc(100% - 20px)); }
  .site-header-bar,
  .site-footer-bar { flex-direction: column; align-items: flex-start; }
  .ficha-card { padding: 20px; }
  .meta-grid { grid-template-columns: 1fr; }
}
