@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --bg: #050505;
  --bg-2: #0c0c0c;
  --card: #121212;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f1ec;
  --muted: #9b9b96;
  --gold: #d4b36a;
  --accent: #e36a1f;
  --nav-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: #111; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 10px; top: 10px; z-index: 90; background: var(--gold); color: #111; padding: 8px 12px; }

h1, h2, .tile h2, .tile h3, .intro h2, .page-hero h1, .post-hero h1, .person h3, .pub h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.2);
  transition: height 0.35s var(--ease), background 0.35s;
}
.site-header.compact { height: 58px; background: rgba(5, 5, 5, 0.94); }
.header-inner {
  height: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4ead8;
  box-shadow: 0 0 0 1px rgba(212, 179, 106, 0.35);
}
.brand strong, .brand-text strong {
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text span { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav a {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: #c9c6bf;
  position: relative;
  padding: 8px 0;
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"]::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 1px;
  background: var(--gold);
}
.btn-donate, .btn-orange, a.btn-orange {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 14px !important;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px !important;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.btn-donate:hover, .btn-orange:hover { transform: translateY(-1px); background: #f0782a !important; }
.btn-donate::after, .btn-orange::after { display: none !important; }
.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: minmax(240px, 30vh);
  gap: 4px;
  padding: 4px;
}
.tile {
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: 240px;
  isolation: isolate;
}
.tile.span-2 { grid-row: span 2; min-height: 490px; }
.tile.wide { grid-column: 1 / -1; min-height: 320px; }
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.06);
  filter: saturate(0.92) contrast(1.05);
  transition: transform 1.1s var(--ease), filter 0.6s;
}
.tile:hover img { transform: scale(1.14); filter: saturate(1.05) contrast(1.08) brightness(1.05); }
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 20%, rgba(0,0,0,0.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.2), transparent 40%);
}
.tile-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 28px 30px;
  z-index: 2;
}
.tag, .kicker {
  display: inline-block;
  font-family: "Instrument Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.tile h2, .tile h3 { line-height: 1.12; letter-spacing: -0.02em; }
.tile h2 { font-size: clamp(1.85rem, 3vw, 3.05rem); max-width: 16ch; }
.tile h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); max-width: 22ch; }
.tile p { color: #d4d1ca; margin-top: 10px; font-size: 14.5px; max-width: 48ch; font-weight: 400; }

.intro {
  display: grid;
  grid-template-columns: 1fr 1.15fr auto;
  gap: 48px;
  align-items: end;
  padding: 88px 40px;
  border-bottom: 1px solid var(--line);
}
.intro h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); letter-spacing: -0.03em; max-width: 11ch; line-height: 1.05; }
.intro p { color: var(--muted); font-size: 17.5px; max-width: 46ch; }
.link-gold, .more {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 14px;
}
.link-gold:hover, .more:hover { color: #fff; }

.section, .band {
  padding: 72px 28px 36px;
  max-width: 1480px;
  margin: 0 auto;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.section-top h2 {
  font-family: "Instrument Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

.pubs, .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cards { grid-template-columns: repeat(3, 1fr); }
.pub, .card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.pub { background: transparent; gap: 12px; }
.pub:hover, .card:hover { transform: translateY(-4px); }
.pub-cover, .card img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000;
  position: relative;
}
.card img { width: 100%; height: 220px; object-fit: cover; aspect-ratio: auto; }
.pub-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.pub:hover img { transform: scale(1.07); }
.pub h3, .card h3 { font-size: 1.25rem; line-height: 1.25; }
.pub span { color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.card-body { padding: 20px 20px 24px; }
.card-body p { color: var(--muted); margin: 8px 0 14px; font-size: 14.5px; }
.lede { color: var(--muted); max-width: 42rem; font-size: 17px; }

.events {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 4px;
  padding: 4px;
}
.event-list { background: var(--bg-2); padding: 32px 28px; }
.event-row {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 14.5px;
}
.event-row time { color: var(--gold); font-size: 11px; letter-spacing: 0.1em; }

.network-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-color: var(--gold) transparent;
}
.person {
  background: linear-gradient(180deg, #161616, #101010);
  min-height: 300px;
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.person:hover { border-color: rgba(212, 179, 106, 0.45); transform: translateY(-3px); }
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1a1712;
  color: var(--gold);
  font-family: "Instrument Sans", sans-serif;
  font-weight: 650;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 179, 106, 0.35);
}
.person h3 { font-size: 1.45rem; margin: 6px 0 8px; }
.person .role {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 650;
  font-family: "Instrument Sans", sans-serif;
}
.person p { color: var(--muted); font-size: 13.5px; margin-top: 8px; flex: 1; }
.person .view {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.split-copy { padding: 64px 48px; background: var(--card); }

.page-hero, .post-hero {
  min-height: 46vh;
  display: grid;
  align-items: end;
  position: relative;
  background: #000 center / cover no-repeat;
}
.post-hero { min-height: 58vh; }
.page-hero::after, .post-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.15), #050505 94%);
}
.page-hero .inner, .post-hero .inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 90px 28px 44px;
  width: 100%;
}
.page-hero h1, .post-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 16ch;
}

.prose { max-width: 690px; margin: 0 auto; padding: 56px 28px 96px; }
.prose p, .prose li { color: #c9c6bf; margin: 0 0 18px; font-size: 17.5px; line-height: 1.7; }
.prose h2 { margin: 32px 0 12px; font-size: 1.7rem; }
.prose a { color: var(--gold); }

.table-wrap { overflow-x: auto; padding: 0 28px 80px; max-width: 1100px; margin: 0 auto; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 16px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--gold); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }

form { display: grid; gap: 14px; }
input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  color: #fff;
  font: inherit;
  border-radius: 0;
}
input:focus, textarea:focus, select:focus { outline: 1px solid var(--gold); border-color: var(--gold); }
label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #111;
  border: 0;
  padding: 13px 18px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 11px;
}
.note {
  border-left: 2px solid var(--gold);
  padding: 16px 18px;
  color: #ddd;
  background: #10100e;
}
.split-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 28px 90px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 28px 28px;
  background: #070707;
}
.footer-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}
.site-footer h4 {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 650;
}
.site-footer p, .site-footer li { color: var(--muted); font-size: 14px; list-style: none; margin-bottom: 8px; }
.site-footer ul { list-style: none; }
.legal-bar {
  max-width: 1480px;
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #5c5c58;
  font-size: 12px;
}

.blog-wrap {
  max-width: 1480px;
  margin: 0 auto;
  padding: 36px 28px 80px;
  display: grid;
  grid-template-columns: 1.75fr 0.65fr;
  gap: 56px;
}
.blog-list { display: grid; gap: 8px; }
.blog-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: var(--card);
  min-height: 200px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.blog-item:hover { border-color: rgba(212, 179, 106, 0.4); transform: translateY(-2px); }
.blog-item img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; transition: transform 0.8s var(--ease); }
.blog-item:hover img { transform: scale(1.05); }
.blog-item div { padding: 28px 28px 28px 32px; }
.blog-item h2 { font-size: 1.7rem; letter-spacing: -0.02em; margin: 8px 0 12px; line-height: 1.15; }
.blog-item p { color: var(--muted); font-size: 15px; }
.blog-meta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 650;
}
.side-card { border-top: 1px solid var(--line); padding: 18px 0; display: block; }
.side-card h3 { font-size: 1.15rem; margin: 4px 0 0; }
.side-card span { color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

.caption { font-size: 12px; color: var(--muted); margin-top: 8px; }

@media (max-width: 1100px) {
  .mosaic { grid-template-columns: 1fr 1fr; }
  .tile.span-2 { grid-row: auto; }
  .intro, .pubs, .cards, .events, .split, .split-form, .footer-grid, .blog-wrap, .blog-item { grid-template-columns: 1fr; }
  .pubs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #0a0a0a;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 22px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .mosaic, .pubs, .cards { grid-template-columns: 1fr; }
  .brand span, .brand-text span { display: none; }
  .split-copy { padding: 36px 24px; }
  .intro { padding: 48px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
