:root {
  --ink: #17221f;
  --paper: #f3f0e8;
  --accent: #d05a3d;
  --muted: #69716c;
  --line: #c9c8bc;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; line-height: 1.5; }
a { color: inherit; }
.site-header, .site-footer { display: flex; justify-content: space-between; gap: 2rem; padding: 1.5rem 5vw; }
.site-header { border-bottom: 1px solid var(--line); font-family: Arial, sans-serif; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.brand { font-weight: bold; text-decoration: none; }
nav { display: flex; gap: 1.25rem; }
nav a { text-decoration: none; }
nav a:hover, .contact a:hover { color: var(--accent); }
main { max-width: 1400px; margin: 0 auto; }
.hero { min-height: 70vh; display: flex; flex-direction: column; justify-content: center; padding: 8vw 5vw; border-bottom: 1px solid var(--line); }
.eyebrow { margin: 0 0 1.5rem; color: var(--accent); font-family: Arial, sans-serif; font-size: .72rem; font-weight: bold; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 900px; margin-bottom: 2rem; font-size: clamp(3.5rem, 9vw, 9rem); font-weight: normal; line-height: .92; letter-spacing: -.04em; }
.intro { max-width: 30rem; color: var(--muted); font-size: 1.25rem; }
.section { padding: 8rem 5vw; border-bottom: 1px solid var(--line); }
h2 { max-width: 48rem; margin-bottom: 3rem; font-size: clamp(2.5rem, 6vw, 6rem); font-weight: normal; line-height: .95; letter-spacing: -.03em; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.work-item { min-height: 18rem; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; background: #dedbd0; }
.work-item span, .work-item p { color: var(--muted); font-family: Arial, sans-serif; font-size: .75rem; }
.work-item h3 { margin: .5rem 0; font-size: 1.7rem; font-weight: normal; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.split > p { max-width: 28rem; color: var(--muted); font-size: 1.25rem; }
.contact h2 { margin-bottom: 0; }
.contact a { text-decoration-thickness: 1px; text-underline-offset: .15em; }
.site-footer { color: var(--muted); font-family: Arial, sans-serif; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 700px) {
  .site-header, .site-footer { padding: 1.25rem 6vw; }
  nav { gap: .75rem; }
  .hero, .section { padding: 5rem 6vw; }
  .hero { min-height: 75vh; }
  .work-grid, .split { grid-template-columns: 1fr; }
  .work-item { min-height: 14rem; }
  .site-footer { flex-direction: column; gap: .5rem; }
}
