
:root {
  --ink: #11100e;
  --ink-soft: #24211d;
  --paper: #f4efe6;
  --paper-2: #fffaf1;
  --warm: #e8ddca;
  --accent: #c85b2f;
  --accent-dark: #9d3f1c;
  --line: rgba(17,16,14,.16);
  --muted: #6f685f;
  --max: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: fixed; left: 12px; top: -100px; z-index: 1000;
  background: #fff; color: #000; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,239,230,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 750; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; background: var(--ink); color: var(--paper-2);
  font-size: 12px; letter-spacing: .08em;
}
.brand-text { letter-spacing: -.02em; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; font-size: 14px; font-weight: 650; }
.nav a:hover { color: var(--accent-dark); }
.nav-contact {
  padding: 10px 16px; border: 1px solid var(--ink); border-radius: 999px;
}
.nav-toggle {
  display: none; border: 1px solid var(--line); background: transparent;
  padding: 9px 12px; border-radius: 999px; font: inherit; font-weight: 700;
}

.hero {
  position: relative;
  padding: 108px 0 96px;
  background:
    radial-gradient(circle at 82% 18%, rgba(200,91,47,.16), transparent 25%),
    linear-gradient(180deg, var(--paper) 0%, #eee5d7 100%);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; width: 420px; height: 420px; right: -160px; bottom: -260px;
  border: 1px solid rgba(17,16,14,.12); border-radius: 50%;
  box-shadow: 0 0 0 56px rgba(17,16,14,.025), 0 0 0 112px rgba(17,16,14,.018);
}
.hero-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: 68px; align-items: end; }
.eyebrow, .section-label, .card-kicker, .work-tag, .mini-label {
  margin: 0 0 18px; text-transform: uppercase; letter-spacing: .16em;
  font-size: 12px; font-weight: 800;
}
.eyebrow { color: var(--accent-dark); }
h1, h2, h3 { margin-top: 0; line-height: 1.04; letter-spacing: -.045em; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 8vw, 104px); font-weight: 500; max-width: 800px; margin-bottom: 30px; }
h1 em { color: var(--accent); font-weight: 500; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(40px, 5vw, 67px); font-weight: 500; }
h3 { font-size: 24px; }
.lede { max-width: 760px; font-size: clamp(22px, 2.4vw, 31px); line-height: 1.3; letter-spacing: -.02em; margin: 0 0 24px; }
.hero-sub { max-width: 760px; font-size: 18px; color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 0 20px; border-radius: 999px; text-decoration: none; font-weight: 800; font-size: 14px;
}
.button.primary { background: var(--ink); color: var(--paper-2); }
.button.secondary { border: 1px solid var(--ink); }
.button:hover { transform: translateY(-1px); }

.hero-card {
  position: relative; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,250,241,.68); box-shadow: 0 18px 60px rgba(48,36,20,.08);
}
.hero-card blockquote {
  margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 29px;
  line-height: 1.25; letter-spacing: -.025em;
}
.card-note { margin: 28px 0 0; color: var(--muted); font-size: 14px; }

.section { padding: 100px 0; }
.section-light { background: var(--paper-2); }
.section-dark { background: var(--ink); color: var(--paper-2); }
.section-warm { background: var(--warm); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.prose { max-width: 720px; font-size: 19px; }
.prose p:first-child { margin-top: 0; }
.prose strong { font-weight: 800; }
.source-note { margin-top: 30px; font-size: 13px; color: var(--muted); }
.source-note a { text-underline-offset: 3px; }

.principles-title { max-width: 850px; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.2); margin-top: 48px; }
.principles-grid article { min-height: 270px; padding: 28px 28px 30px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.principles-grid article:nth-child(3n+2), .principles-grid article:nth-child(3n+3) { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.2); }
.principles-grid span { color: #c9bba7; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.principles-grid h3 { margin: 55px 0 12px; font-size: 27px; }
.principles-grid p { color: #d9d0c4; max-width: 330px; }

.section-heading-row { display: flex; justify-content: space-between; gap: 40px; }
.section-heading-row h2 { max-width: 900px; }
.work-card {
  margin-top: 46px; display: grid; grid-template-columns: 1.5fr .55fr;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff;
}
.work-card-copy { padding: 44px; }
.work-card-copy h3 { font-family: Georgia, "Times New Roman", serif; font-size: 42px; font-weight: 500; }
.work-card-copy p { max-width: 760px; font-size: 17px; }
.work-card-aside { padding: 44px; background: var(--ink); color: var(--paper-2); }
.work-card-aside p:not(.mini-label) { padding: 12px 0; margin: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.text-link { display: inline-block; margin-top: 16px; font-weight: 850; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.text-link span { margin-left: 6px; }

.contact-section { background: var(--accent); color: #fffaf1; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.contact-grid h2 { max-width: 700px; }
.contact-box { border-top: 1px solid rgba(255,255,255,.55); padding-top: 22px; }
.email-link { display: inline-block; font-size: clamp(22px, 3vw, 35px); font-weight: 800; text-decoration: none; letter-spacing: -.03em; }
.email-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.small { font-size: 12px; opacity: .8; max-width: 520px; }

.site-footer { background: var(--ink); color: #cfc4b6; padding: 28px 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; font-size: 13px; }
.footer-wrap p { margin: 0; }

@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid, .work-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; }
  .hero-card { max-width: 620px; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .principles-grid article:nth-child(n) { padding: 28px; border-left: none; }
  .principles-grid article:nth-child(even) { border-left: 1px solid rgba(255,255,255,.2); }
  .split { gap: 32px; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 28px, var(--max)); }
  .site-header { position: relative; }
  .nav-toggle { display: inline-block; }
  .nav {
    display: none; position: absolute; left: 14px; right: 14px; top: 68px;
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px;
    background: var(--paper-2); border: 1px solid var(--line); border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 10px; }
  .nav-contact { border: none; }
  .hero { padding: 72px 0 70px; }
  h1 { font-size: clamp(50px, 16vw, 74px); }
  .section { padding: 72px 0; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid article:nth-child(n) { padding: 28px 0; border-left: none; min-height: 0; }
  .principles-grid h3 { margin-top: 34px; }
  .work-card-copy, .work-card-aside { padding: 30px; }
  .footer-wrap { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
