:root {
  --paper: #f3f0e8;
  --ink: #171715;
  --soft: #6f6a60;
  --line: rgba(23, 23, 21, .18);
  --accent: #db3e2b;
  --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.page-shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.site-header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 28px; font-weight: 800; letter-spacing: -.06em; text-decoration: none; }
.dot { color: var(--accent); }
nav { display: flex; gap: 32px; }
nav a { text-decoration: none; color: var(--soft); font-size: 14px; transition: color .2s ease; }
nav a:hover { color: var(--ink); }
.hero { padding: clamp(80px, 12vw, 170px) 0 clamp(90px, 12vw, 160px); }
.eyebrow, .section-index { font-size: 12px; letter-spacing: .16em; font-weight: 700; margin: 0 0 28px; }
.hero h1, .closing h2 {
  font-size: clamp(58px, 9.2vw, 132px);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 690;
  margin: 0;
  max-width: 1140px;
}
.hero h1 em, .closing h2 em { color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-copy { max-width: 700px; font-size: clamp(19px, 2vw, 27px); line-height: 1.4; margin: 54px 0 0 auto; letter-spacing: -.02em; }
.hero-actions { max-width: 700px; margin: 34px 0 0 auto; display: flex; align-items: center; gap: 28px; }
.button { display: inline-block; padding: 14px 20px; border-radius: 999px; text-decoration: none; font-weight: 650; font-size: 14px; }
.button.primary { background: var(--ink); color: var(--paper); }
.text-link { text-decoration: none; font-size: 14px; font-weight: 650; }
.section-rule { border-top: 1px solid var(--line); padding: 48px 0 110px; }
.split-section { display: grid; grid-template-columns: 1fr 2fr; gap: 70px; }
.large-copy p { margin: 0; font-size: clamp(29px, 3.7vw, 52px); line-height: 1.13; letter-spacing: -.045em; max-width: 870px; }
.section-heading-row { display: flex; justify-content: space-between; align-items: baseline; }
.muted { color: var(--soft); font-size: 13px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 34px; }
.work-card { background: var(--paper); padding: 34px 30px 44px; min-height: 320px; display: flex; flex-direction: column; }
.card-no { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.work-card h2 { margin: auto 0 16px; font-size: 32px; line-height: 1; letter-spacing: -.045em; }
.work-card p { color: var(--soft); margin: 0; max-width: 330px; }
.principle-list { border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.principle > span { color: var(--accent); font-size: 12px; font-weight: 700; }
.principle h3 { font-size: 27px; letter-spacing: -.035em; line-height: 1.1; margin: 0 0 8px; }
.principle p { color: var(--soft); margin: 0; }
.closing { padding-bottom: 130px; }
.closing h2 { font-size: clamp(50px, 7vw, 98px); max-width: 1000px; }
.site-footer { min-height: 110px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); color: var(--soft); font-size: 13px; }
.site-footer a { text-decoration: none; }
@media (max-width: 820px) {
  .page-shell { width: min(calc(100% - 28px), var(--max)); }
  .site-header { height: 76px; }
  nav { gap: 15px; }
  nav a { font-size: 12px; }
  nav a:nth-child(2) { display: none; }
  .hero { padding-top: 86px; }
  .hero h1 { font-size: clamp(50px, 15vw, 86px); }
  .hero-copy, .hero-actions { margin-left: 0; }
  .split-section { grid-template-columns: 1fr; gap: 20px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 250px; }
  .section-rule { padding-bottom: 78px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
