
:root {
  --paper: #F5F3EE;
  --section: #E7E2D8;
  --text: #2B2F33;
  --muted: #4E5B61;
  --accent: #1F4E5F;
  --line: rgba(43,47,51,0.12);
  --line-strong: rgba(43,47,51,0.22);
  --shadow: 0 8px 24px rgba(43, 47, 51, 0.06);
  --max: 1100px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.72;
}
a {
  color: inherit;
  text-decoration-color: rgba(43,47,51,0.28);
  text-underline-offset: 4px;
}
a:hover { color: var(--accent); text-decoration-color: var(--accent); }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(245,243,238,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  min-height: 4rem; display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.brand { font-family: "Source Serif 4", Georgia, serif; font-size: 1.25rem; letter-spacing: .01em; text-decoration:none; }
.main-nav { display:flex; gap:1.1rem; align-items:center; font-size: .95rem; color: var(--muted); }
.main-nav a, .lang-nav a { text-decoration: none; }
.main-nav a.current, .lang-nav a.current { color: var(--text); font-weight: 500; }
.lang-nav { display:flex; gap:.4rem; align-items:center; font-size: .95rem; color: var(--muted); }
.mobile-toggle {
  display:none; width:2.5rem; height:2.5rem; border:1px solid var(--line); border-radius:4px; background:transparent; color:var(--text);
}
.mobile-panel { display:none; border-top:1px solid var(--line); padding: .9rem 0 1rem; }
.mobile-panel.open { display:block; }
.mobile-panel nav { display:flex; flex-direction:column; gap:.75rem; color: var(--muted); }
.hero { padding: 4rem 0 3rem; }
.hero-grid { display:grid; gap:2.5rem; align-items:center; grid-template-columns: 260px minmax(0,1fr); }
.hero-portrait { border:1px solid var(--line); background: var(--section); box-shadow: var(--shadow); border-radius: 4px; overflow:hidden; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; color: var(--muted); font-size: .8rem; margin-bottom:.8rem; }
.page-title, h1, h2, h3, h4 { font-family: "Source Serif 4", Georgia, serif; line-height: 1.18; font-weight: 500; }
.page-title, h1 { font-size: clamp(2rem, 3vw, 3.3rem); margin: 0 0 1rem; }
.lead { font-family: "Source Serif 4", Georgia, serif; font-size: clamp(1.25rem, 2.2vw, 1.7rem); margin:0 0 1rem; }
.prose { max-width: 55rem; }
.prose p, .section-copy p { margin: 0 0 1rem; color: var(--muted); }
.link-list, .bullets { padding-left: 1.15rem; color: var(--muted); }
.link-list li, .bullets li { margin: .45rem 0; }
.focus-line { margin-top:1.25rem; color: var(--muted); }
.focus-line span { color: var(--text); }
.section { padding: 3.5rem 0; }
.section.alt { background: var(--section); }
.section h2 { font-size: clamp(1.6rem, 2.2vw, 2.2rem); margin:0 0 1rem; }
.section h3 { font-size: 1.35rem; margin: 0 0 .7rem; }
.section-intro { max-width: 50rem; margin-bottom: 1.75rem; }
.cards { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:1.25rem; }
.card {
  border:1px solid var(--line); background: var(--paper); border-radius: 4px; padding: 1.35rem; box-shadow: var(--shadow);
}
.card p:last-child { margin-bottom:0; }
.card-link {
  display:block; border:1px solid var(--line); background: var(--paper); border-radius: 4px; padding: 1.35rem; box-shadow: var(--shadow); text-decoration:none;
}
.card-link:hover { border-color: var(--line-strong); }
.rule-top { border-top:1px solid var(--line); padding-top: 1.75rem; }
.footer { border-top:1px solid var(--line); padding: 1.4rem 0 2rem; color: var(--muted); font-size:.95rem; }
.footer-inner { display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.small-links { display:flex; gap:1rem; flex-wrap:wrap; }
.pair-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:1rem 2rem; }
.list-block { border:1px solid var(--line); background: var(--paper); border-radius:4px; padding:1.35rem; box-shadow: var(--shadow); }
.list-block ul { margin: 0; padding-left: 1.15rem; }
.list-block li { margin: .55rem 0; color: var(--muted); }
.note { color: var(--muted); }
.contact-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:1rem; }
.contact-item { border:1px solid var(--line); background:var(--paper); box-shadow:var(--shadow); border-radius:4px; padding:1.2rem; }
.contact-label { font-family: "Source Serif 4", Georgia, serif; font-size:1.2rem; margin-bottom:.5rem; }
.collection ul { list-style:none; padding:0; margin:0; }
.collection li { margin:.9rem 0; color:var(--muted); }
.collection a { font-weight:500; color:var(--text); }
.collection a:hover { color: var(--accent); }
@media (max-width: 860px) {
  .hero-grid, .cards, .pair-grid, .contact-grid { grid-template-columns: 1fr; }
  .main-nav, .lang-nav.desktop { display:none; }
  .mobile-toggle { display:inline-flex; align-items:center; justify-content:center; }
}
