/* Blackbird — plain register
   Courier New (monospace, system) on black.
   Off-white text. Photo dominates the home. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0a0a0a;
  --paper: #f0eee8;
  --paper-mute: rgba(240, 238, 232, 0.68);
  --paper-dim: rgba(240, 238, 232, 0.50);
  --rule: rgba(240, 238, 232, 0.22);
}

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Courier New', Courier, 'Lucida Console', monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
}

.nav-mark {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--paper);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--paper-mute);
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--paper); }

/* HOME — full-bleed photo dominates */
body.home {
  height: 100vh;
  overflow: hidden;
}

.hero {
  position: fixed;
  inset: 0;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center 38%;
}

.hero-tint {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.60) 100%);
}

/* INNER PAGES */
body.inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 100px;
}

.page-inner { width: 100%; max-width: 560px; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 32px;
}
.eyebrow-second { margin-top: 56px; }

.body p {
  margin-bottom: 1.1em;
  font-size: 0.95rem;
  line-height: 1.7;
}
.body p:last-child { margin-bottom: 0; }

.body a {
  color: var(--paper);
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.body a:hover { border-bottom-color: var(--paper); }

/* PEOPLE list */
.people-group { margin-bottom: 0; }
.person {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}
.person:last-child { border-bottom: none; }
.person-name { font-size: 0.95rem; color: var(--paper); }
.person-title {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
  white-space: nowrap;
}

/* CONTACT */
.contact-email {
  font-size: 1.05rem;
  display: inline-block;
  margin-bottom: 28px;
  color: var(--paper);
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.contact-email:hover { border-bottom-color: var(--paper); }

.contact-place {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

/* FOOTER */
.footer {
  padding: 24px 40px;
  font-size: 0.62rem;
  line-height: 1.55;
  color: var(--paper-dim);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  z-index: 5;
  position: relative;
}

body.home .footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer-legal {
  text-align: right;
  white-space: pre-line;
}
@media (max-width: 720px) {
  .footer-legal { text-align: left; }
}

/* RESPONSIVE */
@media (max-width: 720px) {
  .nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.7rem; }
  .page { padding: 110px 20px 80px; }
  .body p { font-size: 0.9rem; }
  .person { flex-direction: column; gap: 4px; align-items: flex-start; }
  .person-title { font-size: 0.65rem; }
  .footer { flex-direction: column; padding: 22px 20px 20px; gap: 8px; font-size: 0.58rem; }
}
