/* 826 Shows — shared styles for all pages */
:root {
  --paper: #f4efe5;
  --ink: #26221d;
  --muted: #6f675c;
  --line: rgba(0,0,0,0.18);
  --max: 860px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', "Helvetica Neue", Arial, system-ui, sans-serif;
  background: var(--paper) url('bg.jpg') center top / cover fixed;
  color: var(--ink);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
  min-height: 100vh; display: flex; flex-direction: column;
}
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; width: 100%; }

/* HEADER */
header { border-bottom: 1px solid var(--line); }
header nav { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 22px 0 18px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 124px; width: auto; display: block; }
.brand .n { font-family: 'Anton', sans-serif; font-size: 1.75rem; line-height: 1; letter-spacing: 0.01em; color: var(--ink); }
.brand .w { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.4em; padding-left: 12px; border-left: 1px solid var(--line); color: var(--ink); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.95rem; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

/* PAGE BODY */
main { flex: 1; padding: 64px 0 80px; }
.page-head { margin-bottom: 36px; }
.page-head h1 { font-family: 'Anton', sans-serif; font-size: clamp(2.4rem, 7vw, 3.6rem); letter-spacing: 0.01em; line-height: 1; }
.page-head .kicker { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 14px; }
p.lead { color: var(--muted); font-size: 1.08rem; max-width: 640px; }
p.lead + p.lead { margin-top: 18px; }

/* SHOWS list */
.show { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.show:first-of-type { border-top: 1px solid var(--line); }
.show .date { font-variant-numeric: tabular-nums; color: var(--muted); width: 110px; flex: none; font-size: 0.95rem; }
.show .info { flex: 1; }
.show .info strong { font-weight: 700; font-size: 1.1rem; }
.show .info span { display: block; color: var(--muted); font-size: 0.9rem; }
.show a.tix { text-decoration: none; color: var(--muted); font-size: 0.9rem; white-space: nowrap; transition: color .15s; }
.show a.tix:hover { color: var(--ink); }
.empty-note { color: var(--muted); margin-top: 26px; font-size: 0.95rem; }

/* FORM */
.signup { display: flex; gap: 10px; max-width: 460px; margin-top: 8px; flex-wrap: wrap; }
.signup input { flex: 1; min-width: 200px; padding: 13px 15px; font-family: inherit; font-size: 0.95rem; background: transparent; border: 1px solid var(--line); color: var(--ink); }
.signup input:focus { outline: none; border-color: var(--ink); }
.signup button { padding: 13px 24px; font-family: inherit; font-weight: 600; font-size: 0.95rem; cursor: pointer; background: var(--ink); color: var(--paper); border: none; transition: opacity .15s; }
.signup button:hover { opacity: 0.85; }
.note { color: var(--muted); margin-top: 14px; font-size: 0.9rem; min-height: 1.1em; }
.contact-line { margin-top: 26px; color: var(--muted); }
.contact-line a { text-decoration: underline; }
.btn-link { display: inline-block; margin-top: 30px; text-decoration: none; border: 1px solid var(--ink); padding: 12px 26px; font-weight: 600; font-size: 0.95rem; transition: background .15s, color .15s; }
.btn-link:hover { background: var(--ink); color: var(--paper); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn-row .btn-link { margin-top: 0; }

/* FOOTER */
footer { border-top: 1px solid var(--line); padding: 30px 0; color: var(--muted); font-size: 0.85rem; }
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--ink); }

@media (max-width: 600px) {
  .nav-links { gap: 18px; }
  .show { flex-wrap: wrap; }
  .show .date { width: 100%; }
}
