:root {
  --bg: #ebe9df;
  --paper: #fffdf5;
  --ink: #253035;
  --muted: #697074;
  --river: #457b8f;
  --brick: #9b4e3b;
  --green: #5f7a4d;
  --line: #d3d0c4;
  font-family: Inter, Arial, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--bg); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; height: auto; object-fit: cover; }
.site-header { display: grid; grid-template-columns: 220px 1fr; align-items: center; padding: 18px 6%; background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 950; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; background: var(--brick); color: #fff; border-radius: 8px; }
nav { justify-self: end; display: flex; gap: 10px; flex-wrap: wrap; color: var(--river); font-weight: 900; }
nav a { padding: 9px 12px; background: #edf4f2; border-radius: 8px; }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) 40%; gap: 24px; padding: 42px 6%; align-items: center; }
.hero-copy { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 30px; }
.hero h1, .detail-hero h1 { margin: 0 0 18px; font-size: 52px; line-height: 1.02; }
.hero p, .detail-hero p, .section-heading p, .essay p, .article-body p, .topic-list em, li { color: var(--muted); font-size: 16px; line-height: 1.72; }
.primary-link { display: inline-flex; margin-top: 24px; padding: 13px 18px; background: var(--river); color: #fff; border-radius: 8px; font-weight: 900; }
.hero-media img { aspect-ratio: 4 / 3.6; border-radius: 8px; box-shadow: 0 24px 70px rgba(37,48,53,.16); }
.intro-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 40px 6%; }
.intro-grid article { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 14px; }
.intro-grid img { aspect-ratio: 4 / 3; border-radius: 6px; margin-bottom: 10px; }
.intro-grid span, .topic-list span, .back-link, .blog-teaser span, .article-kicker { color: var(--brick); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
h2 { margin: 0 0 14px; font-size: 32px; line-height: 1.08; }
.essay, .content-layout { display: grid; grid-template-columns: minmax(0, 780px) 310px; gap: 28px; padding: 52px 6%; }
.essay aside, .side-panel { background: var(--green); color: #fff; padding: 22px; border-radius: 8px; }
.essay aside h2, .side-panel h2, .essay aside li, .side-panel li { color: #fff; }
.blog-teaser { display: grid; grid-template-columns: 370px minmax(0, 1fr); gap: 28px; align-items: center; padding: 50px 6%; background: #dee6df; }
.blog-teaser img, .detail-media img { aspect-ratio: 4 / 3; border-radius: 8px; box-shadow: 0 20px 58px rgba(37,48,53,.13); }
.visual-slider, .page-index, .related-pages, .blog-gallery, .related-band, .all-pages { padding: 52px 6%; }
.slider-track { display: grid; grid-auto-flow: column; grid-auto-columns: 330px; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; }
.slide-card { scroll-snap-align: start; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.slide-card img { aspect-ratio: 4 / 3; border-radius: 6px; margin-bottom: 10px; }
.topic-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.topic-list a { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.topic-list img { aspect-ratio: 4 / 3; border-radius: 6px; margin-bottom: 10px; }
.topic-list strong, .slide-card strong { display: block; font-size: 18px; }
.detail-hero { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; padding: 54px 6%; background: var(--paper); border-bottom: 1px solid var(--line); }
.related-band, .all-pages { display: flex; flex-wrap: wrap; gap: 8px; }
.related-band a, .all-pages a { padding: 10px 12px; background: var(--river); color: #fff; border-radius: 8px; font-weight: 900; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-grid img { aspect-ratio: 4 / 3; border-radius: 8px; }
.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 42px 6%; background: var(--ink); color: #fff; }
.site-footer p, .footer-links a { color: #dee6df; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; font-weight: 900; }
@media (max-width: 960px) {
  .site-header, .hero, .detail-hero, .essay, .content-layout, .blog-teaser, .intro-grid, .topic-list, .gallery-grid, .site-footer { grid-template-columns: 1fr; }
  nav { justify-self: start; }
  .hero h1, .detail-hero h1 { font-size: 40px; }
}
