/* ============================================================
   site.css — shared chrome for the top-level pages
   (index, art, timeline). Project pages keep using layout.css.
   ============================================================ */

/* 62.5% root so 1rem = 10px */
html { font-size: 62.5%; box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body {
  background: #fafafa;
  font-family: "futura-pt", sans-serif;
  font-size: 1.5em;
  line-height: 1.6;
  color: rgba(0,0,0,0.85);
  margin: 0;
}
img { max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ── Header: name left, nav right ── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 60px 0;
}
.site-name {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  margin: 0;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}
.site-nav a:hover, .site-nav a.current { color: #000; }
.site-nav a.current { border-bottom: 2px solid #000; padding-bottom: 2px; }
.site-nav .icons { display: inline-flex; gap: 14px; align-items: center; margin-left: 4px; }
.site-nav .icons a { display: inline-flex; color: rgba(0,0,0,0.5); }
.site-nav .icons a:hover { color: #000; }

/* ── Small labels ── */
.eyebrow {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin: 0 0 14px;
}

/* ── Page title block used by art + timeline ── */
.page-intro {
  padding: 56px 0 32px;
  max-width: 720px;
}
.page-intro h1 {
  font-size: clamp(3rem, 4vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: #000;
}
.page-intro p {
  font-size: 1.7rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.65);
  margin: 0;
}

/* ── Footer ── */
.site-footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 60px 60px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 40px;
  font-size: 1.4rem;
  color: rgba(0,0,0,0.5);
}
.site-footer a { color: rgba(0,0,0,0.65); text-decoration: none; }
.site-footer a:hover { color: #000; }
.site-footer .links { display: flex; gap: 24px; flex-wrap: wrap; }

@media (max-width: 800px) {
  .wrap { padding: 0 24px; }
  .site-header { padding: 20px 24px 0; flex-wrap: wrap; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 1.4rem; }
  .page-intro { padding: 36px 0 20px; }
  .site-footer { padding: 40px 24px; }
}
