/* Spinning Lizard — Venue stack (archetype #49): venues before articles,
   no cards on home, no sidebar on home, centered colophon footer.
   Single-row header, no header search. Distinct from the prior
   masthead+topic-bar / lead+most-read newsroom shell. */
:root {
  --ink: #1c231d;
  --paper: #f7f2e2;
  --mist: #f7f2e2;
  --card: #fffdf6;
  --line: #ddd2ae;
  --news: #b4502a;          /* rust accent — kickers, CTAs, dividers */
  --navy: #24402a;          /* deep moss — header/footer/aside backgrounds */
  --teal: #2f7a63;          /* secondary link */
  --muted: #6f6656;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --display: "Zilla Slab", Georgia, serif;
  --sans: "Space Grotesk", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}
a { color: var(--teal); }
a:hover { color: var(--news); }
img { max-width: 100%; }

.shell {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
}

/* —— site header: single row, no top utility bar, no search box —— */
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.site-head.is-scrolled {
  background: var(--card);
  box-shadow: 0 6px 18px rgba(28, 35, 29, 0.1);
}
.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.01em;
}
.brand-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.86rem;
}
.primary-nav a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.2rem;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--news);
  transition: right 0.2s ease;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { right: 0; }

/* —— desk intro band: text-first, no hero image —— */
.desk-band { padding-top: 2.1rem; }
.desk-band .kicker { margin-bottom: 0.5rem; }
.desk-band h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.14;
  margin: 0 0 0.75rem;
  max-width: 22ch;
}
.desk-line {
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}
.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--news);
  margin: 0 0 0.4rem;
  display: inline-block;
}

.stack-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 3px solid var(--ink);
  margin: 2.1rem 0 1.1rem;
  padding-top: 0.6rem;
}
.stack-head.compact { border-top-width: 1px; margin-top: 1.6rem; }
.stack-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0;
}
.stack-head.compact h2 {
  font-family: var(--sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.stack-head a { font-size: 0.85rem; white-space: nowrap; }

/* —— venue stack: numbered list rows, NOT cards —— */
.venue-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: venue;
}
.venue-row {
  display: grid;
  grid-template-columns: 2.4rem 92px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.venue-row.in-view { opacity: 1; transform: none; }
.venue-row:first-child { padding-top: 0; }
.row-index {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--news);
  font-weight: 600;
}
.venue-row img {
  width: 92px;
  height: 68px;
  object-fit: cover;
  display: block;
}
.row-name {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 0.15rem;
}
.row-name:hover { color: var(--news); }
.row-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* —— secondary posts / extras / tickets: compact typographic lists —— */
.posts-secondary .post-list,
.compact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 2.4rem;
}
.posts-secondary .post-list li,
.compact-list li {
  border-bottom: 1px dotted var(--line);
  padding: 0.45rem 0;
  font-size: 0.96rem;
  break-inside: avoid;
}
.posts-secondary .post-list a,
.compact-list a {
  color: var(--ink);
  text-decoration: none;
}
.posts-secondary .post-list a:hover,
.compact-list a:hover { color: var(--news); }
.posts-secondary .posts-feed .load-more-posts,
.btn-outline {
  margin-top: 1rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.82rem;
}
.posts-secondary .posts-feed .load-more-posts:hover { background: var(--ink); color: #fff; }
.posts-feed .load-more-posts[hidden] { display: none !important; }

.compact-list.tickets li::before {
  content: "•";
  color: var(--news);
  margin-right: 0.5rem;
}

/* —— article reading layout (kept for sub-pages) —— */
.article-top {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0 1.25rem;
}
.article-top-inner {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
}
.article-top .kicker { margin-bottom: 0.55rem; }
.article-top h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.14;
  margin: 0 0 0.75rem;
}
.byline {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.article-lead {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}
.article-lead img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
  background: #ddd;
}
.article-lead figcaption {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  padding: 0.45rem 0 0;
}
.article-grid {
  width: min(1100px, calc(100% - 2rem));
  margin: 1.5rem auto 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.article-body {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.5rem 1.65rem 2rem;
  font-size: 1.05rem;
}
.article-body > p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 3.4rem;
  float: left;
  line-height: 0.85;
  padding: 0.12rem 0.45rem 0 0;
  color: var(--navy);
  font-weight: 700;
}
.article-aside {
  background: var(--navy);
  color: #fff;
  padding: 1rem 1.05rem 1.2rem;
}
.article-aside h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
  color: #b9d0bb;
}
.article-aside a { color: #fff; }
.article-aside .post-list li { border-color: rgba(255,255,255,0.18); }
.post-list { list-style: none; margin: 0; padding: 0; }
.post-list li {
  margin: 0 0 0.7rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.3;
}
.post-list a { color: inherit; text-decoration: none; }
.post-list a:hover { color: var(--news); }
.posts-rail {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1rem 1.15rem 1.25rem;
}
.posts-rail h2 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin: 0 0 0.85rem;
  border-bottom: 2px solid var(--news);
  padding-bottom: 0.4rem;
  display: inline-block;
}

/* —— right-rail widgets (sub-pages only — never on home) —— */
.layout-with-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.5rem;
  align-items: start;
}
.site-rail {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 0.85rem 0.95rem 1.1rem;
  position: sticky;
  top: 4.5rem;
}
.rail-widget {
  margin: 0 0 1.15rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.rail-widget:last-child { border-bottom: 0; margin-bottom: 0; }
.rail-widget h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.55rem;
  color: var(--news);
  font-weight: 800;
}
.rail-list { list-style: none; margin: 0; padding: 0; }
.rail-list li {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  line-height: 1.35;
}
.rail-list a { color: var(--ink); text-decoration: none; }
.rail-list a:hover { color: var(--news); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.35rem 0.55rem; }
.tag-chip { color: var(--teal); text-decoration: none; line-height: 1.2; }
.tag-chip:hover { color: var(--news); }
.rail-more { margin: 0.55rem 0 0; font-size: 0.85rem; }

.site-foot { margin-top: 1rem; }

/* —— footer: centered colophon + utility row (NOT 3-column) —— */
.colophon {
  background: var(--navy);
  color: #cfe0cf;
  padding: 2.4rem 0 2rem;
  text-align: center;
}
.colophon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0;
  padding-bottom: 0;
}
.colophon-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  margin: 0;
}
.colophon-tag {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  color: #9fc0a1;
}
.utility-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.75rem 0 0.25rem;
  font-size: 0.88rem;
}
.utility-row a { color: #fff; text-decoration: none; }
.utility-row a:hover { color: #cfe0cf; text-decoration: underline; }
.utility-row a:not(:last-child)::after { content: "·"; margin-left: 0.4rem; color: #6f8f72; }
.colophon-copy {
  font-size: 0.8rem;
  color: #8fae90;
  margin: 0.5rem 0 0;
}

.btn {
  display: inline-block;
  background: var(--news);
  color: #fff !important;
  text-decoration: none;
  padding: 0.55rem 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}
.prose-wide p { margin: 0 0 1rem; }
.guide-body h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  margin: 1.4rem 0 0.5rem;
}
.search-results { list-style: none; padding: 0; }
.search-result {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  margin: 0 0 0.75rem;
}
.search-no-results {
  background: var(--card);
  border-left: 4px solid var(--news);
  padding: 1rem 1.15rem;
}
.search-snippet { color: var(--muted); margin: 0.35rem 0 0; }
.page-search-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  max-width: 26rem;
  margin: 1rem 0 0;
}
.page-search-form input {
  flex: 1;
  border: 0;
  background: var(--card);
  padding: 0.55rem 0.7rem;
  font: inherit;
}
.page-search-form button {
  background: var(--navy);
  color: #fff;
  border: 0;
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

/* —— motion: reveal-on-scroll handled via .in-view toggling above —— */
@media (prefers-reduced-motion: reduce) {
  .venue-row { transition: none; opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .article-grid { grid-template-columns: 1fr; }
  .layout-with-rail { grid-template-columns: 1fr; }
  .site-rail { position: static; }
  .venue-row { grid-template-columns: 2rem 72px 1fr; }
  .posts-secondary .post-list,
  .compact-list { columns: 1; }
  .head-row { flex-direction: column; align-items: flex-start; }
}
