:root {
  --ink: #1a1610;
  --paper: #f4efe4;
  --gold: #c9a24d;
  --gold-deep: #8d6e2f;
  --field: #2a241c;
  --mute: #6a6256;
  --rule: #d8cfbc;
  --display: "Newsreader", "Times New Roman", serif;
  --sans: "IBM Plex Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 2.4rem)); margin: 0 auto; }

.mast {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  padding: 1.6rem 0 0;
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand img { width: 44px; height: 44px; border-radius: 4px; }
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a { text-decoration: none; color: var(--mute); }
.nav a:hover { color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 68vh;
}
.hero-copy {
  padding: 3.4rem 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}
h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.2rem;
}
.lede { font-size: 1.15rem; max-width: 36rem; color: var(--field); }
.hero-visual {
  position: relative;
  min-height: 280px;
  background: #111 url("hero-banner.jpg") center / cover no-repeat;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 0%, transparent 18%);
}

.band {
  padding: 3.4rem 0;
  border-top: 1px solid var(--rule);
}
.band h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 2rem;
  margin: 0 0 1.4rem;
}
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
.job h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}
.job p { margin: 0; color: var(--field); }

.ledger {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.ledger th, .ledger td {
  text-align: left;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.ledger th { color: var(--mute); font-weight: 500; width: 28%; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}
.mail { color: var(--gold-deep); font-weight: 600; text-decoration: none; }

.site-foot {
  border-top: 3px solid var(--gold);
  padding: 1.2rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.3rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--mute);
}
.site-foot a { color: var(--mute); text-decoration: none; }
.x-ico {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  flex: 0 0 36px;
}
.x-ico svg { width: 18px; height: 18px; fill: var(--paper); }
.x-ico:hover { background: var(--gold-deep); }

.legal-page { padding: 3rem 0 4rem; max-width: 42rem; }
.legal-page h1 { font-size: 2.2rem; }

@media (max-width: 860px) {
  .mast, .hero, .cols, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 220px; }
  .hero-visual::after { background: none; }
}
