:root {
  --bg: #090b0c;
  --bg-soft: #0f1213;
  --surface: #121516;
  --surface-2: #171a1b;
  --text: #f1eee7;
  --muted: #aaa79f;
  --faint: #c4c0b6;
  --line: rgba(241, 238, 231, 0.14);
  --line-strong: rgba(241, 238, 231, 0.24);
  --gold: #c7a66a;
  --gold-bright: #e2c58b;
  --max: 1380px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: rgba(199,166,106,.34); color: #fff; }

.shell { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 68px;
  background: rgba(9, 11, 12, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 17px;
  white-space: nowrap;
}
.brand span { color: var(--gold-bright); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a[aria-current='page'] { color: var(--text); }
.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 7px 12px;
}

.hero { border-bottom: 1px solid var(--line); }
.hero-media {
  position: relative;
  max-height: 680px;
  overflow: hidden;
  background: #0c0e0f;
}
.hero-media img { aspect-ratio: 3 / 1; object-fit: cover; object-position: center; }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(9,11,12,.54) 100%);
  pointer-events: none;
}
.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 72px;
  padding: 56px 0 68px;
}
.hero-kicker, .eyebrow {
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 650;
}
.hero-intro h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.7vw, 68px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 10px 0 0;
  max-width: 880px;
}
.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
}
.text-link::after { content: '↗'; color: var(--gold-bright); }
.text-link:hover { border-bottom-color: var(--gold-bright); }

.section { padding: 94px 0; border-bottom: 1px solid var(--line); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}
.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: .14em;
  margin-bottom: 9px;
}
.section-index::after { content: ''; width: 54px; height: 1px; background: rgba(199,166,106,.6); }
.section h2, .page-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}
.section h2 { font-size: clamp(46px, 6vw, 78px); line-height: .98; }
.section-head p { margin: 0; color: var(--muted); max-width: 560px; }
.section-head-side { display: grid; gap: 18px; }

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  min-height: 540px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-image { overflow: hidden; }
.feature-image img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.feature-row:hover .feature-image img { transform: scale(1.015); }
.feature-copy {
  padding: 44px 0 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.meta { color: var(--faint); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; }
.tag { color: var(--gold-bright); }
.feature-copy h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.03;
  margin: 12px 0 18px;
  letter-spacing: -.03em;
}
.feature-copy p { color: var(--muted); margin: 0; font-size: 16px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.post-card {
  min-height: 330px;
  padding: 32px 28px 34px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: background .2s ease;
}
.post-card:first-child { border-left: 1px solid var(--line); }
.post-card:hover { background: var(--surface); }
.post-card h3 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 30px 0 14px;
}
.post-card p { color: var(--muted); margin: 0; }
.post-card .arrow { margin-top: auto; color: var(--gold-bright); font-size: 20px; }

.art-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.art-band img { aspect-ratio: 16 / 7; object-fit: cover; }
.art-band-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 11px;
  letter-spacing: .06em;
}

.timeline-preview {
  margin-top: 48px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.timeline-track {
  position: relative;
  min-width: 1040px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  padding-top: 26px;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--line-strong);
}
.milestone { position: relative; padding-right: 10px; }
.milestone::before {
  content: '';
  position: absolute;
  top: -21px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid #d7d1c5;
  box-shadow: 0 0 0 4px rgba(9,11,12,.9);
}
.milestone.current::before { border-color: var(--gold-bright); background: var(--gold); }
.milestone h3 { font-family: var(--serif); font-weight: 400; margin: 8px 0 6px; font-size: 21px; }
.milestone p { color: var(--muted); margin: 0; font-size: 13px; }

.project-feature { position: relative; margin-bottom: 18px; }
.project-feature img { aspect-ratio: 16 / 7; object-fit: cover; border: 1px solid var(--line); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card {
  min-height: 260px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
}
.project-card:hover { border-color: rgba(199,166,106,.6); transform: translateY(-2px); }
.project-card h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; line-height: 1.05; margin: 24px 0 12px; }
.project-card p { color: var(--muted); margin: 0; }
.project-card .arrow { margin-top: auto; color: var(--gold-bright); }

.page-hero { padding: 82px 0 64px; border-bottom: 1px solid var(--line); }
.page-title { font-size: clamp(54px, 8vw, 106px); line-height: .9; margin-top: 14px; }
.page-deck { max-width: 720px; color: var(--muted); font-size: 18px; margin: 28px 0 0; }
.page-art { margin-top: 46px; border: 1px solid var(--line); overflow: hidden; }
.page-art img { aspect-ratio: 16/6.7; object-fit: cover; }

.list { border-top: 1px solid var(--line); }
.list-item {
  display: grid;
  grid-template-columns: 130px minmax(0,1fr) 120px;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.list-item .date { color: var(--faint); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.list-item h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1.08; }
.list-item p { margin: 0; color: var(--muted); max-width: 780px; }
.list-item .type { text-align: right; color: var(--gold-bright); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }

.long-timeline { position: relative; max-width: 980px; margin: 0 auto; padding-left: 32px; }
.long-timeline::before { content:''; position:absolute; left: 6px; top: 10px; bottom: 10px; width:1px; background: var(--line-strong); }
.long-event { position: relative; padding: 0 0 58px 28px; }
.long-event::before { content:''; position:absolute; left:-30px; top:8px; width:11px; height:11px; border-radius:50%; border:2px solid #cfc9bd; background:var(--bg); box-shadow:0 0 0 5px var(--bg); }
.long-event.current::before { border-color:var(--gold-bright); background:var(--gold); }
.long-event .date { color: var(--gold-bright); font-size: 11px; text-transform: uppercase; letter-spacing:.14em; }
.long-event h2 { font-family: var(--serif); font-size: 38px; font-weight:400; line-height:1.03; margin:8px 0 12px; }
.long-event p { color:var(--muted); margin:0; max-width:700px; }

.project-list { display:grid; grid-template-columns: repeat(2,1fr); gap:18px; }
.project-large { min-height:360px; border:1px solid var(--line); padding:34px; background:var(--surface); display:flex; flex-direction:column; }
.project-large h2 { font-family:var(--serif); font-weight:400; font-size:42px; margin:18px 0 10px; line-height:1.03; }
.project-large p { color:var(--muted); max-width:520px; }
.project-large .status { margin-top:auto; color:var(--gold-bright); font-size:11px; letter-spacing:.12em; text-transform:uppercase; }

.site-footer { padding: 46px 0 54px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.footer-note { color: var(--muted); max-width: 540px; font-size: 13px; }
.footer-mark { font-family: var(--serif); text-transform: uppercase; letter-spacing: .2em; color: var(--gold-bright); font-size: 13px; }
.footer-links { display:flex; gap:20px; color:var(--faint); font-size:12px; flex-wrap:wrap; }

@media (max-width: 960px) {
  .shell { width: min(100% - 36px, var(--max)); }
  .hero-intro, .section-head { grid-template-columns: 1fr; gap: 30px; }
  .hero-side { max-width: 620px; }
  .feature-row { grid-template-columns: 1fr; min-height: 0; }
  .feature-image img { aspect-ratio: 16/9; }
  .feature-copy { padding: 34px 0 42px; }
  .post-grid, .project-grid { grid-template-columns: 1fr; }
  .post-card { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 260px; }
  .project-list { grid-template-columns:1fr; }
  .page-art img, .project-feature img, .art-band img { aspect-ratio:16/9; }
}

@media (max-width: 720px) {
  .site-header { height: 62px; }
  .brand { font-size: 14px; }
  .menu-btn { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 61px;
    left: 0;
    right: 0;
    background: rgba(9,11,12,.98);
    border-bottom: 1px solid var(--line);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .hero-media img { aspect-ratio: 1.8 / 1; object-position: 70% center; }
  .hero-intro { padding: 38px 0 46px; }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 34px; }
  .feature-copy h3 { font-size: 36px; }
  .list-item { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .list-item .type { text-align:left; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .page-hero { padding-top:56px; }
  .page-title { font-size:60px; }
}

/* Long-form journal article */
.article { border-bottom: 1px solid var(--line); }
.article-shell { width: min(900px, calc(100% - 64px)); margin: 0 auto; }
.article-header { padding: 92px 0 54px; }
.article-meta { display: flex; gap: 14px; align-items: center; color: var(--faint); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; }
.article-meta span + span::before { content: '·'; margin-right: 14px; color: var(--line-strong); }
.article-header h1 { margin: 18px 0 0; max-width: 860px; font-family: var(--serif); font-size: clamp(54px, 7vw, 96px); line-height: .95; font-weight: 400; letter-spacing: -.045em; }
.article-header h1 em { color: var(--gold-bright); font-weight: 400; }
.article-deck { max-width: 760px; margin: 30px 0 0; color: var(--muted); font-size: 20px; line-height: 1.55; }
.article-cover { margin-bottom: 74px; overflow: hidden; border: 1px solid var(--line); }
.article-cover img { aspect-ratio: 16/7; object-fit: cover; }
.article-body { width: min(780px, calc(100% - 64px)); margin: 0 auto; padding-bottom: 86px; }
.article-body > p { margin: 0 0 30px; font-family: var(--serif); font-size: 20px; line-height: 1.72; color: #e5e1d8; }
.article-body > p:first-child::first-letter { float: left; margin: .06em .08em 0 0; color: var(--gold-bright); font-family: var(--serif); font-size: 4.1em; line-height: .72; }
.article-body h2 { margin: 70px 0 25px; font-family: var(--serif); font-size: clamp(34px, 4vw, 48px); line-height: 1.06; font-weight: 400; letter-spacing: -.03em; }
.post-figure { margin: 58px 0; }
.post-figure img { width: min(620px, 100%); margin: 0 auto; border: 1px solid var(--line); }
.post-figure figcaption { max-width: 620px; margin: 12px auto 0; color: var(--text); font-size: 12px; line-height: 1.5; }
.lyric-quote { margin: 54px 0; padding: 3px 0 3px 26px; border-left: 1px solid var(--gold); }
.lyric-quote p { margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.65; font-style: italic; color: #ddd8ce; }
.lyric-quote cite { display: block; margin-top: 13px; color: var(--text); font-size: 12px; font-style: normal; letter-spacing: .04em; }
.article-endmark { margin: 64px 0 26px; text-align: center; color: var(--gold); font-size: 12px; }
.article-body .article-disclaimer { margin: 0 auto; max-width: 520px; color: var(--text); font-family: var(--sans); font-size: 12px; text-align: center; }
.article-nav { display: flex; justify-content: space-between; gap: 30px; padding: 38px 0 52px; border-top: 1px solid var(--line); }
.journal-list-item { transition: background .2s ease; }
.journal-list-item:hover { background: var(--surface); }

@media (max-width: 720px) {
  .article-shell, .article-body { width: min(100% - 36px, 900px); }
  .article-header { padding: 58px 0 38px; }
  .article-deck { font-size: 17px; }
  .article-cover { width: 100%; border-left: 0; border-right: 0; margin-bottom: 52px; }
  .article-cover img { aspect-ratio: 16/9; }
  .article-body > p { font-size: 18px; line-height: 1.68; }
  .article-body h2 { margin-top: 56px; }
  .post-figure { margin: 44px 0; }
  .lyric-quote { padding-left: 18px; }
  .lyric-quote p { font-size: 18px; }
  .article-nav { flex-direction: column; align-items: flex-start; }
}
