:root {
  --mist: #e7ece9;
  --paper: #fbfaf2;
  --ink: #20302f;
  --muted: #687572;
  --water: #6f8f98;
  --reed: #77835c;
  --wood: #876f50;
  font-family: Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--mist); }
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: 1fr auto; align-items: center; padding: 24px 8%; background: var(--paper); border-bottom: 1px solid rgba(32,48,47,.14); }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 26px; }
.brand-mark { width: 50px; height: 50px; display: grid; place-items: center; background: var(--water); color: #fff; border-radius: 50%; }
nav { display: flex; gap: 18px; flex-wrap: wrap; color: var(--reed); font: 800 14px/1.2 Arial, sans-serif; }
.hero { display: grid; grid-template-columns: minmax(0, 1fr); }
.hero-media img { height: 52vh; min-height: 390px; border-bottom: 12px solid var(--reed); }
.hero-copy { max-width: 980px; padding: 42px 8% 58px; }
.hero h1, .detail-hero h1 { margin: 0 0 18px; font-size: 58px; line-height: 1; }
.hero p, .detail-hero p, .section-heading p, .essay p, .article-body p, .topic-list em, li { color: var(--muted); font: 17px/1.76 Arial, sans-serif; }
.primary-link { display: inline-flex; margin-top: 24px; padding: 13px 18px; background: var(--water); color: #fff; border-radius: 8px; font: 800 14px/1 Arial, sans-serif; }
.intro-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0 8% 46px; }
.intro-grid article { background: var(--paper); padding: 18px; border-right: 1px solid rgba(32,48,47,.12); }
.intro-grid img { aspect-ratio: 4 / 3; border-radius: 8px; margin-bottom: 12px; }
.intro-grid span, .topic-list span, .back-link, .blog-teaser span, .article-kicker { color: var(--wood); font: 900 12px/1 Arial, sans-serif; text-transform: uppercase; letter-spacing: .08em; }
h2 { margin: 0 0 14px; font-size: 34px; line-height: 1.08; }
.essay, .content-layout { display: grid; grid-template-columns: 300px minmax(0, 760px); gap: 40px; padding: 56px 8%; }
.essay aside, .side-panel { order: -1; background: var(--reed); color: #fff; padding: 24px; border-radius: 8px; }
.essay aside h2, .side-panel h2, .essay aside li, .side-panel li { color: #fff; }
.blog-teaser { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 34px; align-items: center; padding: 52px 8%; background: #d8e0dc; }
.blog-teaser img, .detail-media img { aspect-ratio: 16 / 9; border-radius: 8px; box-shadow: 0 24px 70px rgba(32,48,47,.14); }
.visual-slider, .page-index, .related-pages, .blog-gallery, .related-band, .all-pages { padding: 54px 8%; }
.slider-track { display: grid; grid-auto-flow: column; grid-auto-columns: 380px; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; }
.slide-card { scroll-snap-align: start; background: var(--paper); border-radius: 8px; padding: 12px; }
.slide-card img { aspect-ratio: 16 / 9; border-radius: 6px; margin-bottom: 12px; }
.topic-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.topic-list a { background: var(--paper); padding: 14px; border-radius: 8px; }
.topic-list img { aspect-ratio: 16 / 9; border-radius: 6px; margin-bottom: 10px; }
.topic-list strong, .slide-card strong { display: block; font-size: 21px; }
.detail-hero { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 36px; padding: 56px 8%; background: var(--paper); }
.related-band, .all-pages { display: flex; flex-wrap: wrap; gap: 10px; }
.related-band a, .all-pages a { padding: 10px 13px; background: var(--water); color: #fff; border-radius: 8px; font: 800 14px/1 Arial, sans-serif; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid img { aspect-ratio: 16 / 9; border-radius: 8px; }
.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 44px 8%; background: var(--ink); color: #fff; }
.site-footer p, .footer-links a { color: #d8e0dc; }
.footer-links { display: grid; gap: 10px; font: 800 14px/1.35 Arial, sans-serif; }
@media (max-width: 960px) {
  .site-header, .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; }
}
