:root {
  --sky: #e8f0f2;
  --paper: #ffffff;
  --ink: #1f2b2c;
  --muted: #637070;
  --pine: #285642;
  --lake: #4e879c;
  --trail: #c19352;
  font-family: Inter, Arial, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--sky); }
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: auto 1fr; gap: 28px; align-items: center; padding: 20px 7%; background: rgba(255,255,255,.94); position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(31,43,44,.12); }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 950; font-size: 22px; }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; background: var(--pine); color: #fff; border-radius: 8px; }
nav { justify-self: end; display: flex; flex-wrap: wrap; gap: 14px; color: var(--pine); font-weight: 900; }
.hero { display: grid; grid-template-columns: 1fr; padding: 0; }
.hero-copy { order: 2; padding: 38px 7% 58px; max-width: 940px; }
.hero h1, .detail-hero h1 { margin: 0 0 18px; font-size: 60px; line-height: .98; }
.hero p, .detail-hero p, .section-heading p, .essay p, .article-body p, .topic-list em, li { color: var(--muted); font-size: 17px; line-height: 1.72; }
.primary-link { display: inline-flex; margin-top: 24px; padding: 13px 18px; background: var(--pine); color: #fff; border-radius: 8px; font-weight: 900; }
.hero-media { order: 1; }
.hero-media img { width: 100%; height: 56vh; min-height: 430px; border-radius: 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; padding: 44px 7%; background: var(--paper); }
.intro-grid article { display: grid; gap: 12px; }
.intro-grid img { aspect-ratio: 16 / 10; border-radius: 8px; }
.intro-grid span, .topic-list span, .back-link, .blog-teaser span, .article-kicker { color: var(--trail); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
h2 { margin: 0 0 14px; font-size: 34px; line-height: 1.05; }
.essay, .content-layout { display: grid; grid-template-columns: minmax(0, 820px) 320px; gap: 36px; padding: 54px 7%; }
.essay aside, .side-panel { background: var(--lake); 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: 32px; align-items: center; padding: 52px 7%; background: #d7e4df; }
.blog-teaser img, .detail-media img { aspect-ratio: 16 / 10; border-radius: 8px; box-shadow: 0 24px 70px rgba(40,86,66,.15); }
.visual-slider, .page-index, .related-pages, .blog-gallery, .related-band, .all-pages { padding: 54px 7%; }
.slider-track { display: grid; grid-auto-flow: column; grid-auto-columns: 400px; 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 / 10; border-radius: 6px; margin-bottom: 12px; }
.topic-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.topic-list a { background: var(--paper); border-radius: 8px; padding: 14px; }
.topic-list img { aspect-ratio: 16 / 10; 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) 430px; gap: 36px; padding: 56px 7%; 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(--pine); color: #fff; border-radius: 8px; font-weight: 900; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid img { aspect-ratio: 16 / 10; border-radius: 8px; }
.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 44px 7%; background: var(--pine); color: #fff; }
.site-footer p, .footer-links a { color: #dbe8e2; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; font-weight: 900; }
@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; }
  .slider-track { grid-auto-columns: 82%; }
}
