:root {
  --bg: #f7f3ee;
  --ink: #1a1714;
  --muted: #5e564e;
  --line: #e4d8cc;
  --card: #fffdf9;
  --rust: #c24e1d;
  --rust-deep: #8f3512;
  --char: #2a2420;
  --max: 640px;
  --wide: 1080px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
}
a { color: var(--rust-deep); }
a:hover { color: var(--rust); }
a:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .4rem .7rem; z-index: 20; }
.wrap { max-width: var(--wide); margin: 0 auto; padding: 0 1.4rem; }
.site-header {
  background: var(--char);
  color: #f4ece4;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.95rem 0; flex-wrap: wrap;
}
.brand {
  color: #f4ece4; text-decoration: none; font-weight: 700;
  letter-spacing: -0.02em; font-size: 1.02rem;
}
.brand em { font-style: normal; color: #e8a078; font-weight: 600; }
.nav-links { display: flex; gap: 1.1rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav-links a { color: #cfc4b8; text-decoration: none; font-size: 0.92rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.hero {
  display: grid;
  grid-template-columns: minmax(240px, 38%) 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.2rem 0 2.4rem;
}
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 2rem; }
}
.hero-photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top;
  border-radius: 4px; background: #d7cfc6;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05; letter-spacing: -0.035em;
  margin: 0 0 0.8rem; font-weight: 750;
}
h1 .mark { color: var(--rust); }
.subhead { font-size: 1.15rem; color: var(--muted); margin: 0 0 0.5rem; max-width: 36rem; }
.loc { margin: 0 0 1.2rem; color: var(--muted); font-size: 0.92rem; }
.cta {
  display: inline-block;
  background: var(--rust); color: #fff !important; text-decoration: none;
  padding: 0.75rem 1.15rem; font-weight: 600; border-radius: 2px;
}
.cta:hover { background: var(--rust-deep); }
.principles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 0 0 2.2rem;
}
@media (max-width: 800px) { .principles { grid-template-columns: 1fr; } }
.principle {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--rust);
  padding: 1.15rem 1.2rem 1.2rem;
}
.principle .n {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rust); font-weight: 700;
}
.principle h2 { font-size: 1.05rem; margin: 0.4rem 0 0.45rem; letter-spacing: -0.02em; }
.principle p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.prose { max-width: var(--max); padding: 2.4rem 0 0; }
.prose h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.prose h2 { font-size: 1.25rem; margin: 1.8rem 0 0.6rem; }
.prose p { margin: 0 0 1rem; }
.muted { color: var(--muted); }
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.4rem 0 2rem;
}
@media (max-width: 800px) { .grid-3 { grid-template-columns: 1fr; } }
.vcard {
  background: var(--card); border: 1px dashed #c9b8a6;
  padding: 1.2rem 1.15rem; min-height: 10rem;
}
.vcard .tag {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rust); font-weight: 700;
}
.vcard h2 { font-size: 1.05rem; margin: 0.45rem 0 0.4rem; }
.note {
  background: #f1e6da; border-left: 3px solid var(--rust);
  padding: 0.85rem 1rem; font-size: 0.92rem; color: var(--muted);
}
.site-footer {
  background: var(--char); color: #cfc4b8;
  margin-top: 3.5rem; padding: 1.6rem 0 2.2rem; font-size: 0.88rem;
}
.site-footer a { color: #e8a078; }
.site-footer p { margin: 0 0 0.4rem; }
.email { font-weight: 650; font-size: 1.15rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
