:root {
  --shop: #e6d2b8;
  --paper: #fff7ec;
  --ink: #2b2016;
  --muted: #725f4e;
  --walnut: #6f4024;
  --steel: #4d5962;
  --amber: #c58a2d;
  font-family: Arial, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--shop); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; height: auto; object-fit: cover; }
.site-header { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 20px 6%; background: var(--paper); border-bottom: 8px solid var(--walnut); }
.brand { display: flex; gap: 12px; align-items: center; font-size: 24px; font-weight: 900; }
.brand-mark { width: 48px; height: 48px; display: grid; place-items: center; background: var(--walnut); color: #fff; border-radius: 2px 2px 18px 2px; }
nav { display: flex; flex-wrap: wrap; gap: 12px; color: var(--steel); font-weight: 800; }
.hero { display: grid; grid-template-columns: 42% minmax(0, 1fr); gap: 0; align-items: stretch; min-height: 70vh; }
.hero-copy { order: 2; padding: 68px 7%; align-self: center; }
.hero h1, .detail-hero h1 { margin: 0 0 18px; font-size: 56px; line-height: 1; }
.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: 14px 18px; background: var(--steel); color: #fff; border-radius: 2px; font-weight: 900; }
.hero-media img { height: 100%; min-height: 500px; border-right: 14px solid var(--walnut); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 42px 6%; background: var(--paper); }
.intro-grid article { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 18px; align-items: center; background: #ead8c0; padding: 16px; border-left: 7px solid var(--walnut); }
.intro-grid img { width: 210px; height: 150px; border-radius: 2px; }
.intro-grid span, .topic-list span, .back-link, .blog-teaser span, .article-kicker { color: var(--amber); font-size: 12px; font-weight: 900; 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: 1fr 300px; gap: 34px; padding: 52px 6%; }
.essay aside, .side-panel { background: var(--walnut); color: #fff; padding: 24px; border-radius: 2px; }
.essay aside h2, .side-panel h2, .essay aside li, .side-panel li { color: #fff; }
.blog-teaser { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; align-items: center; padding: 50px 6%; background: #d5bd9b; }
.blog-teaser img, .detail-media img { aspect-ratio: 4 / 3; border-radius: 2px; box-shadow: 14px 14px 0 var(--walnut); }
.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: 320px; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; }
.slide-card { scroll-snap-align: start; background: var(--paper); padding: 14px; border-radius: 2px; border-bottom: 6px solid var(--walnut); }
.slide-card img { aspect-ratio: 4 / 3; margin-bottom: 12px; }
.topic-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.topic-list a { background: var(--paper); padding: 14px; border-radius: 2px; }
.topic-list img { aspect-ratio: 4 / 3; margin-bottom: 10px; }
.topic-list strong, .slide-card strong { display: block; font-size: 20px; }
.detail-hero { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 36px; align-items: center; padding: 54px 6%; background: var(--paper); }
.related-band, .all-pages { display: flex; flex-wrap: wrap; gap: 10px; }
.related-band a, .all-pages a { padding: 10px 12px; background: var(--steel); color: #fff; border-radius: 2px; font-weight: 800; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid img { aspect-ratio: 1 / 1; border-radius: 2px; }
.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: #ead8c0; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; font-weight: 800; }
@media (max-width: 940px) {
  .site-header, .hero, .detail-hero, .essay, .content-layout, .blog-teaser, .intro-grid, .intro-grid article, .topic-list, .gallery-grid, .site-footer { display: grid; grid-template-columns: 1fr; }
  .hero-copy { order: 0; }
  .hero h1, .detail-hero h1 { font-size: 40px; }
  .intro-grid img { width: 100%; height: auto; }
}
