:root {
  --paper: #eee9df;
  --paper-light: #f6f2e9;
  --ink: #292a26;
  --olive: #34392d;
  --olive-soft: #59604d;
  --brass: #9d8461;
  --line: rgba(41,42,38,.2);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  z-index: 20;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.55) 0 1px, transparent 1.5px),
    radial-gradient(circle at 75% 68%, rgba(49,43,35,.12) 0 .7px, transparent 1.4px),
    repeating-linear-gradient(95deg, transparent 0 7px, rgba(80,70,58,.025) 8px, transparent 9px 14px);
  background-size: 19px 17px, 23px 29px, 100% 13px;
  mix-blend-mode: multiply;
}
a { color: inherit; }
.skip-link { position:absolute; left:-9999px; top:0; background:#fff; padding:.75rem 1rem; z-index:99; }
.skip-link:focus { left:1rem; top:1rem; }
.site-header {
  min-height: 78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 5vw;
  border-bottom:1px solid var(--line);
  background:rgba(238,233,223,.92);
  backdrop-filter: blur(8px);
  position:sticky;
  top:0;
  z-index:10;
}
.wordmark { text-decoration:none; letter-spacing:.34em; font-size:1.05rem; }
nav { display:flex; gap:2rem; font-family:var(--sans); font-size:.78rem; letter-spacing:.08em; }
nav a { text-decoration:none; border-bottom:1px solid transparent; }
nav a:hover, nav a:focus { border-color:currentColor; }
.menu-toggle { display:none; border:0; background:none; font:inherit; }
section { padding: 8rem max(6vw, 2rem); }
.section-paper { background:rgba(246,242,233,.58); }
.hero { min-height: calc(100vh - 78px); display:grid; grid-template-columns:minmax(260px, .85fr) 1.3fr; gap:7vw; align-items:center; }
.hero-mark { display:flex; justify-content:center; color:var(--ink); }
.hero-mark img { width:min(610px, 88vw); height:auto; display:block; mix-blend-mode:multiply; }
.eyebrow { font-family:var(--sans); text-transform:uppercase; letter-spacing:.23em; font-size:.67rem; font-weight:600; color:var(--olive-soft); }
h1, h2, h3 { font-weight:400; margin-top:0; }
h1 { font-size:clamp(4.4rem, 11vw, 9.5rem); letter-spacing:.18em; line-height:.9; margin-bottom:2rem; }
h2 { font-size:clamp(2.6rem, 5vw, 5.2rem); line-height:1.05; }
h3 { font-size:1.45rem; }
.hero-line { font-size:clamp(1.45rem, 2.8vw, 2.35rem); line-height:1.34; max-width:780px; }
.intro { max-width:660px; font-size:1.08rem; }
.text-link { display:inline-block; margin-top:1.2rem; font-family:var(--sans); font-size:.8rem; text-transform:uppercase; letter-spacing:.16em; text-decoration:none; padding-bottom:.35rem; border-bottom:1px solid; }
.why { display:grid; grid-template-columns:.65fr 1.35fr; gap:8vw; }
.section-heading { max-width:720px; }
.section-heading.light { color:var(--paper-light); }
.section-heading.centered { margin:0 auto 4rem; text-align:center; }
.story { max-width:780px; font-size:1.12rem; }
.story .lead { font-size:1.35rem; }
.story .emphasis { font-size:1.7rem; margin:2.2rem 0; }
.story .declaration { font-size:clamp(2.2rem,5vw,4.7rem); line-height:1.1; margin:3rem 0 0; }
blockquote { margin:3rem 0; padding:1.5rem 0 1.5rem 2rem; border-left:1px solid var(--brass); font-size:1.45rem; }
.section-dark { background:var(--olive); color:var(--paper-light); }
.building-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.16); margin-top:5rem; }
.building-grid article { background:var(--olive); padding:2.4rem; min-height:320px; }
.building-grid span { font-family:var(--sans); font-size:.68rem; letter-spacing:.17em; color:#c6b79f; }
.building-grid h3 { margin-top:4.2rem; }
.building-grid p, .status-note { color:rgba(246,242,233,.75); }
.status-note { max-width:780px; margin:3rem 0 0; font-size:.85rem; font-family:var(--sans); }
.principle-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.principle-grid article { padding:2.6rem; min-height:220px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.principle-grid h3 { letter-spacing:.06em; }
.closing { display:grid; grid-template-columns:minmax(180px,.6fr) 1.4fr; gap:8vw; align-items:center; background:#ddd5c6; }
.closing-mark { width:min(430px, 78vw); height:auto; mix-blend-mode:multiply; }
.closing h2 { max-width:900px; }
.closing p { max-width:650px; }
.button { display:inline-block; margin-top:1.3rem; padding:.95rem 1.25rem; border:1px solid var(--ink); text-decoration:none; font-family:var(--sans); font-size:.8rem; letter-spacing:.1em; }
.button:hover, .button:focus { background:var(--ink); color:var(--paper-light); }
footer { display:grid; grid-template-columns:1fr 1fr 1fr; gap:2rem; align-items:center; padding:2.2rem 5vw; background:var(--ink); color:var(--paper-light); font-family:var(--sans); font-size:.72rem; letter-spacing:.05em; }
footer p:last-child { text-align:right; }
@media (max-width: 900px) {
  .menu-toggle { display:block; }
  nav { display:none; position:absolute; top:78px; left:0; right:0; flex-direction:column; padding:1.5rem 5vw 2rem; background:var(--paper-light); border-bottom:1px solid var(--line); }
  nav.open { display:flex; }
  .hero, .why, .closing { grid-template-columns:1fr; }
  .hero { padding-top:4rem; }
  .hero-mark { order:2; }
  .building-grid { grid-template-columns:1fr 1fr; }
  .principle-grid { grid-template-columns:1fr 1fr; }
  footer { grid-template-columns:1fr; text-align:left; }
  footer p:last-child { text-align:left; }
}
@media (max-width: 560px) {
  section { padding:5rem 1.35rem; }
  .site-header { padding:0 1.35rem; }
  h1 { font-size:3.8rem; }
  .building-grid, .principle-grid { grid-template-columns:1fr; }
  .building-grid article { min-height:auto; }
  .building-grid h3 { margin-top:2.5rem; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior:auto; } }

.about { display:grid; grid-template-columns:.65fr 1.35fr; gap:8vw; }
.focus-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.16); margin-top:5rem; }
.focus-grid article { background:var(--olive); padding:2.25rem; min-height:285px; }
.focus-grid h3 { margin-bottom:1rem; }
.focus-grid p { color:rgba(246,242,233,.75); }
.work { display:grid; grid-template-columns:.7fr 1.3fr; gap:7vw; align-items:start; }
.work-grid { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.work-grid article { padding:2.2rem; min-height:245px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.status { display:inline-block; margin-bottom:2.3rem; font-family:var(--sans); font-size:.64rem; text-transform:uppercase; letter-spacing:.16em; color:var(--olive-soft); }
.not-section { display:grid; grid-template-columns:.7fr 1.3fr; gap:8vw; }
.not-copy { max-width:800px; font-size:1.2rem; }
.emphasis-light { margin-top:2.5rem; font-size:clamp(1.8rem,3.2vw,3rem); line-height:1.25; color:var(--paper-light); }

@media (max-width: 1050px) {
  .focus-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 900px) {
  .about, .work, .not-section { grid-template-columns:1fr; }
}
@media (max-width: 560px) {
  .focus-grid, .work-grid { grid-template-columns:1fr; }
  .focus-grid article, .work-grid article { min-height:auto; }
}


.emblem { border-top:1px solid var(--line); }
.emblem-layout { display:grid; grid-template-columns:minmax(240px,.62fr) 1.38fr; gap:7vw; align-items:start; margin-top:4rem; }
.emblem-figure { margin:0; position:sticky; top:115px; }
.emblem-figure img { display:block; width:100%; max-width:520px; height:auto; mix-blend-mode:multiply; }
.emblem-copy { max-width:820px; font-size:1.12rem; }
.emblem-copy .lead { font-size:1.4rem; line-height:1.5; }
.emblem-copy strong { font-weight:600; }
.emblem-stages { margin:2.7rem 0; padding:1.5rem 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.emblem-stages p { margin:0; padding:1rem 0; border-bottom:1px solid rgba(41,42,38,.1); }
.emblem-stages p:last-child { border-bottom:0; }
.emblem-ending { margin-top:2.5rem; font-size:clamp(1.6rem,2.7vw,2.5rem); line-height:1.3; }
@media (max-width:900px) { .emblem-layout { grid-template-columns:1fr; } .emblem-figure { position:static; } .emblem-figure img { max-width:420px; margin:0 auto; } }
