:root {
  --bg: #0c0b0a;
  --surface: #151311;
  --elevated: #1c1916;
  --fg: #f2ebe1;
  --muted: #9a9186;
  --subtle: #6f675e;
  --accent: #c45c3e;
  --accent-fg: #0c0b0a;
  --border: rgba(242, 235, 225, 0.12);
  --border-strong: rgba(242, 235, 225, 0.22);
  --display: "Newsreader", Georgia, serif;
  --sans: "Sora", "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100dvh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
.wrap { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }
.eyebrow { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.muted { color: var(--muted); }
.subtle { color: var(--subtle); }

header.site {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(12px);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 1.15rem; }
.mark { width: 32px; height: 32px; border-radius: 4px; background: var(--elevated); display: grid; place-items: center; }
.dot { width: 8px; height: 8px; border-radius: 99px; background: var(--accent); }
nav.desk { display: none; align-items: center; gap: 28px; }
nav.desk a, .drop > button { font-size: 0.9rem; color: var(--muted); background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit; }
nav.desk a:hover, .drop > button:hover, nav.desk a.active { color: var(--fg); }
.drop { position: relative; }
.drop-panel {
  display: none; position: absolute; top: 140%; left: 0; width: 280px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 8px 0;
}
.drop.open .drop-panel { display: block; }
.drop-panel a { display: block; padding: 10px 16px; color: var(--muted); }
.drop-panel a:hover { background: var(--elevated); color: var(--fg); }
.drop-panel .all { border-top: 1px solid var(--border); margin-top: 4px; color: var(--fg); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px; border-radius: 8px; border: 1px solid transparent;
  font-size: 0.9rem; font-weight: 500; cursor: pointer; font-family: inherit;
}
.btn-accent { background: var(--accent); color: var(--accent-fg); }
.btn-invert { background: var(--fg); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--border-strong); background: var(--elevated); }
.menu-btn { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 8px; background: none; color: var(--fg); }
.mobile { display: none; border-top: 1px solid var(--border); padding: 16px 20px 24px; }
.mobile.open { display: block; }
.mobile a { display: flex; align-items: center; min-height: 44px; }

.hero { position: relative; min-height: 100dvh; display: flex; align-items: flex-end; overflow: hidden; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .shade { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), color-mix(in oklab, var(--bg) 75%, transparent) 45%, color-mix(in oklab, var(--bg) 25%, transparent)); }
.hero .copy { position: relative; padding: 7rem 0 4rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 18ch; }
.hero .lead { max-width: 40rem; color: color-mix(in oklab, var(--fg) 80%, transparent); }
.picker { max-width: 36rem; margin-top: 1.5rem; }
.select {
  width: 100%; min-height: 48px; display: flex; justify-content: space-between; align-items: center;
  padding: 8px 16px; border: 1px solid var(--border); border-radius: 8px;
  background: color-mix(in oklab, var(--bg) 80%, transparent); color: var(--fg); cursor: pointer; text-align: left;
}
.list { display: none; margin-top: 8px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); max-height: 280px; overflow: auto; }
.list.open { display: block; }
.list button { width: 100%; background: none; border: 0; color: var(--muted); padding: 12px 16px; text-align: left; cursor: pointer; font-family: inherit; display: flex; justify-content: space-between; }
.list button:hover, .list button.on { background: var(--elevated); color: var(--fg); }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }

.strip { border-block: 1px solid var(--border); padding: 2.5rem 0; }
.cols-3 { display: grid; gap: 2rem; }
.section { padding: 4.5rem 0; }
.section.alt { background: var(--surface); }
.grid-4, .grid-2, .grid-3, .cards { display: grid; gap: 1rem; }
.card, .panel {
  border: 1px solid var(--border); background: var(--surface); border-radius: 12px; overflow: hidden;
}
.card.pad, .panel, .pad { padding: 1.25rem; }
.card img { height: 180px; width: 100%; object-fit: cover; }
.cover { position: relative; min-height: 280px; display: grid; align-items: end; overflow: hidden; }
.cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.cover .shade { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), transparent); }
.cover .inner { position: relative; padding: 4.5rem 0 3rem; }
.stat { border: 1px solid var(--border); background: var(--surface); border-radius: 12px; padding: 1.1rem; }
.stat b { font-family: var(--display); font-size: 1.8rem; display: block; }
form.lead { display: grid; gap: 12px; }
label { font-size: 0.8rem; color: var(--subtle); }
input, select, textarea {
  width: 100%; background: var(--bg); color: var(--fg); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px; font-family: inherit; font-size: 1rem;
}
textarea { min-height: 120px; resize: vertical; }
footer.site { border-top: 1px solid var(--border); background: var(--surface); padding: 4rem 0 0; }
.foot-grid { display: grid; gap: 2rem; }
.legal { border-top: 1px solid var(--border); margin-top: 2.5rem; padding: 1rem 0; font-size: 0.75rem; color: var(--subtle); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.team { display: grid; gap: 10px; }
.person { display: flex; gap: 12px; align-items: center; border: 1px solid var(--border); border-radius: 12px; padding: 12px; background: var(--bg); }
.av { width: 44px; height: 44px; border-radius: 99px; background: var(--elevated); display: grid; place-items: center; font-family: var(--display); }
.prose p { color: var(--muted); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 1.5rem 0; }
.chip { border: 1px solid var(--border); background: transparent; color: var(--muted); border-radius: 999px; padding: 8px 14px; cursor: pointer; font-family: inherit; }
.chip.on, .chip:hover { color: var(--fg); border-color: var(--border-strong); }

@media (min-width: 900px) {
  nav.desk { display: flex; }
  .menu-btn { display: none; }
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 2fr 1fr 1fr; }
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
  .team { grid-template-columns: 1fr 1fr 1fr; }
}
