:root {
  --ink: #140e0c;
  --iron: #8b1e1e;
  --paper: #f2d2c4;
  --mist: #fff4ee;
  --muted: #a88880;
  --card: #1a1210;
  --line: #3a221c;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--ink); color: var(--paper); }
body { font-family: "IBM Plex Sans", sans-serif; line-height: 1.55; min-height: 100vh; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-head {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.95rem 6vw;
  background: rgba(20, 14, 12, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; font-weight: 600; }
.brand img { width: 36px; height: 36px; }
.nav { display: flex; flex-wrap: wrap; gap: 0.35rem 1.15rem; font-size: 0.92rem; }
.nav a { color: var(--paper); text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: #e08a7a; }
.hero {
  position: relative; isolation: isolate;
  min-height: 78vh; display: grid; place-items: center;
  padding: 6rem 6vw 4rem; overflow: hidden;
  background: radial-gradient(circle at 80% 10%, #8b1e1e55, transparent 42%), var(--ink);
}
.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-copy { position: relative; z-index: 1; max-width: 44rem; }
.stamp { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; color: #e08a7a; }
h1, h2, h3 { font-family: "Bebas Neue", sans-serif; letter-spacing: 0.04em; font-weight: 400; line-height: 0.95; }
h1 { font-size: clamp(3rem, 9vw, 6.4rem); color: #fff; margin: 0.2em 0 0.4em; max-width: 16ch; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.lead { font-size: 1.15rem; max-width: 38rem; color: #e8c4b4; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem 1.2rem; align-items: center; margin-top: 1.6rem; }
.btn {
  display: inline-block; background: var(--iron); color: #fff;
  padding: 0.78rem 1.15rem; text-decoration: none; font-weight: 600;
  border: 0; cursor: pointer; font: inherit;
}
.ghost { color: #e08a7a; }
main.page { padding: 0 0 4rem; }
section { padding: 3.2rem 6vw; }
.manifest ol { font-size: 1.25rem; line-height: 1.65; max-width: 40rem; }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.grid article { padding: 2rem 6vw; border-top: 1px solid var(--line); }
.grid article:nth-child(odd) { border-right: 1px solid var(--line); }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 1100px; }
.card, .cards article { background: var(--card); border: 1px solid var(--line); padding: 1.25rem 1.3rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1.2rem; }
.person { background: var(--card); border: 1px solid var(--line); }
.person img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.person figcaption { padding: 0.85rem 0.95rem 1.05rem; }
.person h3 { margin: 0 0 0.2rem; font-size: 1.25rem; }
.role { color: #e08a7a; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-family: "IBM Plex Sans", sans-serif; }
.write { display: grid; grid-template-columns: 1.25fr 0.85fr; }
.write > * { padding: 3rem 6vw; }
.panel { background: var(--card); }
form { display: grid; gap: 0.65rem; }
label { display: grid; gap: 0.25rem; font-size: 0.8rem; }
input, select, textarea {
  font: inherit; padding: 0.65rem; background: var(--ink); color: var(--paper);
  border: 1px solid #5a3228;
}
.form-note.ok { color: #8fd4a8; }
.form-note.err { color: #ff8a8a; }
.tiny { color: var(--muted); font-size: 0.86rem; }
footer.site-foot {
  padding: 1.5rem 6vw; border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between;
}
@media (max-width: 800px) {
  .grid, .write, .cards { grid-template-columns: 1fr; }
  .grid article:nth-child(odd) { border-right: 0; }
  .site-head { flex-wrap: wrap; }
}
