/* ============================================
   mikeside.com — STAGE LEFT theme
   navy room · plaster light · brick warmth
   ============================================ */
:root {
  --bg: #0b1020;          /* night navy */
  --bg-soft: #111730;
  --card: #151c38;
  --text: #ece5d8;        /* aged plaster */
  --muted: #9a97a8;
  --accent: #c14b34;      /* kiln brick red */
  --accent-soft: #d9694f;
  --jumpsuit: #f5c542;    /* clone-suit yellow — slogan only, nothing else */
  --border: #262e4e;
  --radius: 14px;
  --maxw: 1080px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .logo { font-family: "Fraunces", Georgia, serif; }
a { color: var(--accent-soft); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Nav ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 16, 32, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; }
.nav .logo { font-weight: 600; font-size: 1.25rem; letter-spacing: -0.01em; color: var(--text); }
.nav .logo span { color: var(--accent-soft); }
.nav ul { display: flex; gap: 1.4rem; list-style: none; }
.nav ul a {
  color: var(--muted); font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.09em;
}
.nav ul a:hover, .nav ul a.active { color: var(--text); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* HIDDEN 2026-07-27 — Photos, Videos and Blog are unlinked site-wide while
   those sections are empty. The front page and /projects/ have their <li>s
   commented out in the HTML; every other page that links this stylesheet
   (the Setlist Lizard board, all generated show/song/stats/credits pages)
   still carries them in markup, because those are written by
   tools/build_setlistlizard.py and a hand edit would be overwritten on the
   next build. This is the single switch that covers all of them.
   TO RESTORE: delete this block, and uncomment the <li>s in index.html and
   projects/index.html. The durable fix is to drop the three lines from the
   nav template in tools/build_setlistlizard.py and let the build regenerate
   — do that and this block can go.
   The second rule is a fallback for any browser without :has(); it hides the
   link but leaves an empty list item. */
.nav ul li:has(> a[href="/photos/"]),
.nav ul li:has(> a[href="/videos/"]),
.nav ul li:has(> a[href="/blog/"]) { display: none; }
.nav ul a[href="/photos/"],
.nav ul a[href="/videos/"],
.nav ul a[href="/blog/"] { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 5rem 0 4.5rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem; align-items: center;
}
.hero .kicker {
  color: var(--accent-soft); font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.22em;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 600;
  line-height: 1.05; letter-spacing: -0.02em; margin: 0.7rem 0 1.1rem;
}
.hero h1 em { font-style: italic; color: var(--accent-soft); }
/* Opt-in yellow for the front-page slogan. Deliberately scoped to a class so
   every other hero em stays brick red — the palette allows exactly one yellow. */
.hero h1 em.jumpsuit { color: var(--jumpsuit); }
.hero p.lede { color: var(--muted); font-size: 1.12rem; max-width: 34rem; }
.hero .fineprint {
  margin-top: 1.6rem; color: var(--muted); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.hero .cta-row { margin-top: 2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8);
}
.hero-photo figcaption {
  margin-top: 0.7rem; color: var(--muted); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.14em; text-align: right;
}

.btn {
  display: inline-block; padding: 0.7rem 1.35rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; border: 1px solid var(--border);
  color: var(--text); transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #f7f2e9; }
.btn.primary:hover { background: var(--accent-soft); }

/* ---------- Donut groove divider ---------- */
.groove {
  display: flex; justify-content: center; gap: 1.1rem;
  padding: 0.4rem 0 0.2rem; overflow: hidden;
}
.groove i {
  width: 14px; height: 14px; border-radius: 50%;
  border: 4px solid var(--accent); opacity: 0.55; flex: none;
}
.groove i:nth-child(even) { opacity: 0.25; }

/* ---------- Sections as sets ---------- */
section.block { padding: 4rem 0; border-top: 1px solid var(--border); }
.section-head { margin-bottom: 2rem; display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.section-head .setno {
  color: var(--accent-soft); font-family: "Fraunces", Georgia, serif;
  font-size: 0.95rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.section-head h2 { font-size: 1.8rem; font-weight: 600; letter-spacing: -0.01em; }
.section-head p { color: var(--muted); width: 100%; margin-top: 0.2rem; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--accent); }
.card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.4rem; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .tag {
  display: inline-block; margin-top: 0.9rem; font-size: 0.72rem;
  color: var(--accent-soft); border: 1px solid var(--border);
  padding: 0.15rem 0.6rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.gallery .ph {
  aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-soft), var(--card));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.85rem;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Video embeds ---------- */
.video-wrap {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); background: var(--bg-soft);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

/* ---------- Blog list ---------- */
.post-list { display: flex; flex-direction: column; gap: 1rem; }
.post-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 1.1rem 1.3rem; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.post-item time { color: var(--muted); font-size: 0.85rem; white-space: nowrap; }
article.post { max-width: 44rem; margin: 0 auto; padding: 3rem 0; }
article.post h1 { font-size: 2.2rem; font-weight: 600; margin-bottom: 0.5rem; }
article.post .meta { color: var(--muted); margin-bottom: 2rem; }
article.post p { margin-bottom: 1.1rem; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border); padding: 2.5rem 0; margin-top: 4rem;
  color: var(--muted); font-size: 0.9rem;
}
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-inner a { color: var(--muted); margin-left: 1rem; }
.footer-note { width: 100%; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; }

/* ---------- Responsive ---------- */
@media (max-width: 780px) {
  .grid, .video-grid, .hero-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 3rem; }
  .nav ul {
    display: none; position: absolute; right: 1.25rem; top: 3.4rem;
    flex-direction: column; gap: 0.2rem; background: var(--card);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 0.8rem 1.2rem; min-width: 10rem;
  }
  .nav ul.open { display: flex; }
  .nav-toggle { display: block; }
}
