:root {
  --bg: #f6f5f1; --panel: #fff; --text: #222426;
  --muted: #6c6e70; --line: #e4e1d9; --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.site-header, main, .site-footer { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.site-header { display:flex; align-items:center; justify-content:space-between; padding:26px 0; }
.brand { display:inline-flex; align-items:center; gap:10px; font-weight:700; text-decoration:none; }
.brand img { width:30px; height:30px; border-radius:8px; }
nav { display:flex; gap:22px; }
nav a, .site-footer a { color:var(--muted); text-decoration:none; }
nav a:hover, .site-footer a:hover { color:var(--text); }
.hero { max-width:760px; padding:90px 0 76px; }
.eyebrow { font-size:.78rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
h1 { margin:12px 0 20px; font-size:clamp(3rem,8vw,5.7rem); line-height:.98; letter-spacing:-.055em; }
.hero p { max-width:650px; color:var(--muted); font-size:1.12rem; }
h2 { margin:0; font-size:1.65rem; letter-spacing:-.025em; }
.section-head { margin-bottom:24px; }
.grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.item { overflow:hidden; background:var(--panel); border:1px solid var(--line); border-radius:18px; }
.item img { display:block; width:100%; aspect-ratio:3/2; object-fit:cover; }
.item-copy { padding:20px; }
.item h3 { margin:0 0 8px; font-size:1.06rem; }
.item p { margin:0; color:var(--muted); font-size:.95rem; }
.about { max-width:720px; margin:92px 0 56px; border-top:1px solid var(--line); padding-top:44px; }
.about p, .legal p { color:var(--muted); }
.legal { max-width:760px; padding:72px 0 44px; }
.legal h1 { font-size:clamp(2.8rem,7vw,4.6rem); }
.legal h2 { margin-top:32px; font-size:1.25rem; }
.site-footer { border-top:1px solid var(--line); padding:28px 0 44px; color:var(--muted); display:flex; justify-content:space-between; gap:18px; font-size:.92rem; }
@media (max-width:760px) { .grid { grid-template-columns:1fr; } .hero { padding-top:54px; } .site-footer { flex-direction:column; } }
