@charset "UTF-8";
/* ===========================================================================
   Sherrod's 2026 Birthday Week — Charlotte
   ---------------------------------------------------------------------------
   Hand-maintained. The HTML is generated by scripts/build_site.py; this is not.

   DIRECTION
   The week is a concert bill: two headliners and an undercard. Sherrod plays
   bass; Friday's headliner is a poet who fronts a soul band. So the page is
   built in the vernacular of a record sleeve and a gig poster rather than an
   event template — a didone display face at poster scale, a condensed utility
   face for the bill data, and a warm bone "programme card" laid over the night
   for the supporting schedule.

   PALETTE   night / bone are the two grounds. Two accents, both content-derived:
             brass = live music (Wed, Thu, Fri, Sat), rust = football (Sunday).
             Nothing here is birthday-party colour.

   TYPE      Bodoni Moda      display  — names, headlines, times in the margin
             Barlow Condensed utility  — eyebrows, bill data, buttons, chips
             Karla            body     — everything you actually read

   Mobile is the real design; the wide layout is the variant.
   =========================================================================== */

:root {
  /* grounds */
  --night:      #0a0e18;
  --night-2:    #101725;
  --night-3:    #18202f;
  --line:       #263047;
  --line-soft:  #1b2334;

  --bone:       #efe7d9;
  --bone-2:     #e5dbc9;
  --bone-line:  #cdbfa6;

  /* type colour on night — all verified >= 4.5:1 by scripts/check_contrast.py */
  --text:       #f5f2eb;   /* 17.0:1 */
  --muted:      #b9c0ce;   /* 10.4:1 */
  --dim:        #97a0b0;   /*  7.3:1 */

  /* type colour on bone */
  --ink:        #141821;   /* 14.4:1 */
  --ink-muted:  #4a5261;   /*  6.4:1 */
  --ink-dim:    #5c6472;   /*  4.8:1 */

  /* accents */
  --brass:      #d9a85c;   /* 8.9:1 on night */
  --brass-lift: #ebc489;
  --brass-deep: #7a5818;   /* 5.3:1 on bone */
  --rust:       #ce7233;   /* 5.6:1 on night */
  --rust-lift:  #e08a50;
  --rust-deep:  #a34a17;   /* 4.9:1 on bone */

  --on-brass:   #14100a;
  --on-rust:    #180c05;

  --ff-display: "Bodoni Moda", Didot, "Bodoni MT", "Times New Roman", Georgia,
                "Nimbus Roman No9 L", serif;
  --ff-util:    "Barlow Condensed", "Arial Narrow", "Helvetica Neue Condensed",
                Arial, "Liberation Sans Narrow", sans-serif;
  --ff-body:    Karla, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                "Helvetica Neue", Arial, "Liberation Sans", sans-serif;

  --wrap:   1180px;
  --gutter: clamp(20px, 5.2vw, 52px);
  --tap:    44px;
  --nav-h:  62px;
}

/* A [hidden] element is hidden, whatever else claims that box. */
[hidden] { display: none !important; }

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

/* overflow-x:clip is a safety net that, unlike hidden, does not create a
   scroll container and therefore never breaks the sticky header. */
@supports (overflow-x: clip) { body { overflow-x: clip; } }

body {
  margin: 0;
  background: var(--night);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}

img, svg, video, picture { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol { margin: 0; }

a { color: var(--brass); text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: var(--brass-lift); }

::selection { background: var(--brass); color: var(--on-brass); }

:focus-visible {
  outline: 2px solid var(--brass-lift);
  outline-offset: 3px;
  border-radius: 1px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brass); color: var(--on-brass);
  padding: 12px 20px; font-family: var(--ff-util); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
}
.skip:focus { left: 8px; top: 8px; }

.wrap { max-width: var(--wrap); margin-inline: auto; }
.wrap--narrow { max-width: 720px; }

/* ------------------------------------------------------------- eyebrow ---- */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-util); font-weight: 600; font-size: .8rem;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 18px;
}
.eyebrow .rule {
  width: 34px; height: 1px; background: currentColor; flex: none; opacity: .7;
}
.eyebrow--ink { color: var(--brass-deep); }
.feat--rust .eyebrow { color: var(--rust-lift); }

/* ----------------------------------------------------------------- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 9px var(--gutter);
  background: rgba(10, 14, 24, .86);
  border-bottom: 1px solid var(--line-soft);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: rgba(10, 14, 24, .72);
         -webkit-backdrop-filter: blur(16px) saturate(1.3);
         backdrop-filter: blur(16px) saturate(1.3); }
}

.brand {
  display: flex; flex-direction: column; gap: 1px;
  text-decoration: none; color: var(--text);
  padding: 6px 0; min-height: var(--tap); justify-content: center;
}
.brand-name {
  font-family: var(--ff-display); font-weight: 600;
  font-size: 1.06rem; line-height: 1.1; letter-spacing: .005em;
}
.brand:hover .brand-name { color: var(--brass-lift); }
.brand-sub {
  font-family: var(--ff-util); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim);
}

.nav-toggle {
  width: var(--tap); height: var(--tap);
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: 2px;
  color: var(--text); cursor: pointer; padding: 0;
}
.nav-bars { display: block; width: 20px; }
.nav-bars span {
  display: block; height: 1.5px; background: currentColor;
  transition: transform .24s ease, opacity .24s ease;
}
.nav-bars span + span { margin-top: 6px; }
.nav.open .nav-bars span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav.open .nav-bars span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

.nav > nav {
  flex-basis: 100%;
  display: flex; flex-direction: column;
  max-height: 0; overflow: hidden; visibility: hidden;
  transition: max-height .26s ease, visibility 0s linear .26s;
}
.nav.open > nav {
  max-height: 420px; visibility: visible;
  transition: max-height .26s ease, visibility 0s linear 0s;
}
.nav > nav a {
  display: flex; align-items: center; min-height: var(--tap);
  padding: 4px 2px; text-decoration: none; color: var(--muted);
  font-family: var(--ff-util); font-size: 1.02rem;
  letter-spacing: .16em; text-transform: uppercase;
  border-bottom: 1px solid var(--line-soft);
}
.nav > nav a:hover { color: var(--text); }
.nav .nav-cta { color: var(--brass); border-bottom: 0; }
.nav .nav-cta:hover { color: var(--brass-lift); }

@media (min-width: 861px) {
  .nav-toggle { display: none; }
  .nav > nav {
    flex-basis: auto; flex-direction: row; align-items: center; gap: 30px;
    max-height: none; visibility: visible; overflow: visible; transition: none;
  }
  .nav > nav a { border-bottom: 0; font-size: .84rem; letter-spacing: .2em; }
  .nav .nav-cta {
    border: 1px solid var(--brass); padding: 0 18px; min-height: 40px;
  }
  .nav .nav-cta:hover { background: var(--brass); color: var(--on-brass); }
}

/* ---------------------------------------------------------------- hero ---- */
.hero {
  position: relative; isolation: isolate;
  padding: clamp(52px, 12vh, 132px) var(--gutter) 0;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
/* The skyline sits on the bottom edge: its own sky fills the top of the frame,
   which is exactly where the display type lands. */
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%;
  opacity: .60; filter: saturate(.78) contrast(1.04);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,24,.55) 0%, rgba(10,14,24,.66) 34%,
                            rgba(10,14,24,.86) 68%, rgba(10,14,24,.97) 90%,
                            var(--night) 100%),
    linear-gradient(90deg, rgba(10,14,24,.66) 0%, rgba(10,14,24,.18) 62%,
                           rgba(10,14,24,.30) 100%);
}
.hero--img { padding-bottom: 0; }
.hero-in { max-width: var(--wrap); margin-inline: auto; }

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.9rem, 12.2vw, 7.6rem);
  line-height: .93;
  letter-spacing: -.022em;
  font-weight: 700;
  margin: 0 0 clamp(20px, 3vw, 30px);
  max-width: 14ch;
}
.hero-h1 span { display: block; }
.hero-em {
  font-style: italic; font-weight: 400; color: var(--brass);
  letter-spacing: -.01em;
}
.hero-sub {
  font-family: var(--ff-body); font-size: clamp(1.12rem, 3.1vw, 1.5rem);
  line-height: 1.4; color: var(--text); max-width: 30ch; font-weight: 500;
  margin-bottom: 16px;
}
.hero-lede {
  color: var(--muted); max-width: 56ch; font-size: 1.02rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px;
            padding-bottom: clamp(44px, 7vw, 76px); }

.hero-week { max-width: var(--wrap); margin-inline: auto;
             padding-bottom: clamp(8px, 2vw, 20px); }

/* week strip — five days, the two headliners marked. Doubles as jump nav. */
.week {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.wk-cell { min-width: 0; }
.wk-cell a {
  display: flex; flex-direction: column; gap: 3px; min-height: 60px;
  padding: 13px 6px 15px; text-decoration: none; color: var(--dim);
  border-right: 1px solid var(--line-soft);
  transition: background .2s ease, color .2s ease;
}
.wk-cell:last-child a { border-right: 0; }
.wk-cell a:hover { background: var(--night-2); color: var(--text); }
.wk-day {
  font-family: var(--ff-util); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase;
}
.wk-num {
  font-family: var(--ff-display); font-size: 1.5rem; line-height: 1;
  color: var(--muted);
}
.wk-cell--headline .wk-num { color: var(--brass); }
.wk-cell--headline a { color: var(--muted); }
.wk-label {
  display: none;
  font-family: var(--ff-util); font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; align-items: center; gap: 6px;
}
.wk-dot { width: 5px; height: 5px; background: var(--brass); border-radius: 50%;
          flex: none; }
.wk-cell:nth-child(5) .wk-dot { background: var(--rust); }
.wk-cell:nth-child(5) .wk-num { color: var(--rust-lift); }
@media (min-width: 560px) {
  .wk-label { display: flex; }
  .wk-cell a { min-height: 84px; padding: 16px 12px 18px; }
}

/* ------------------------------------------------------------- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 2px;
  font-family: var(--ff-util); font-weight: 600; font-size: .88rem;
  letter-spacing: .16em; text-transform: uppercase; text-align: center;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease,
              border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--brass { background: var(--brass); color: var(--on-brass); }
.btn--brass:hover { background: var(--brass-lift); color: var(--on-brass); }
.btn--rust  { background: var(--rust);  color: var(--on-rust); }
.btn--rust:hover { background: var(--rust-lift); color: var(--on-rust); }
.btn--quiet {
  background: transparent; color: var(--text); border-color: var(--line);
}
.btn--quiet:hover { border-color: var(--brass); color: var(--brass-lift); }
.btn--wide { width: 100%; }

/* --------------------------------------------------------------- chips ---- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  display: inline-flex; align-items: center;
  font-family: var(--ff-util); font-size: .76rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 2px; line-height: 1.5;
}
.chip--todo {
  color: var(--muted); border: 1px dashed var(--line);
  background: rgba(255, 255, 255, .02);
}
.chip--note {
  color: var(--brass); border: 1px solid rgba(217, 168, 92, .42);
  background: rgba(217, 168, 92, .08);
}
.feat--rust .chip--note {
  color: var(--rust-lift); border-color: rgba(206, 114, 51, .45);
  background: rgba(206, 114, 51, .10);
}
.chips--light .chip--todo { color: var(--ink-muted); border-color: var(--bone-line);
                            background: rgba(20, 24, 33, .03); }
.chips--light .chip--note { color: var(--brass-deep);
                            border-color: rgba(122, 88, 24, .38);
                            background: rgba(122, 88, 24, .07); }

/* ------------------------------------------------------------ features ---- */
.feat {
  padding: clamp(64px, 10vw, 128px) var(--gutter);
  border-top: 1px solid var(--line-soft);
}
.feat--rust { background: var(--night-2); }
.feat-in {
  max-width: var(--wrap); margin-inline: auto;
  display: grid; gap: clamp(30px, 5vw, 60px); align-items: start;
}
@media (min-width: 900px) {
  .feat-in { grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr); }
  /* Sunday mirrors Friday, so the two features do not read as one template. */
  .feat--rust .feat-col  { order: 2; }
  .feat--rust .feat-body { order: 1; }
  /* A typographic panel has no natural height to fill a long column, so it
     travels with the reader instead of leaving a hole. */
  .feat-col:has(> .feat-media--type) { position: sticky;
                                       top: calc(var(--nav-h) + 28px); }
}

.feat-col { min-width: 0; display: flex; flex-direction: column;
             gap: clamp(22px, 3vw, 34px); }
.feat-media { margin: 0; min-width: 0; }
.feat-media picture { display: block; }
.feat-media img {
  width: 100%; height: auto; border: 1px solid var(--line);
  filter: saturate(.92) contrast(1.03);
}
.feat-media .cred {
  font-family: var(--ff-util); font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dim); margin-top: 10px;
}
.feat-media--type .type-panel {
  display: flex; flex-direction: column; justify-content: flex-end;
  aspect-ratio: 4 / 5; padding: clamp(24px, 4.5vw, 44px);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(217, 168, 92, .13), transparent 62%),
    linear-gradient(165deg, var(--night-3), var(--night));
}
.feat--rust .feat-media--type .type-panel {
  background:
    radial-gradient(120% 90% at 22% 8%, rgba(206, 114, 51, .15), transparent 62%),
    linear-gradient(165deg, var(--night-3), var(--night));
}
.type-panel-sm {
  font-family: var(--ff-util); font-size: .8rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 14px;
}
.feat--rust .type-panel-sm { color: var(--rust-lift); }
.type-panel-lg {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.1rem, 6.4vw, 3.4rem); line-height: .98;
  letter-spacing: -.02em; color: var(--text);
}
.type-panel-tail {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 3.6vw, 1.9rem); line-height: 1.15;
  color: var(--muted); margin-top: 6px;
}

.feat-body { min-width: 0; }
.feat-when {
  font-family: var(--ff-util); font-size: 1.02rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.feat-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.05rem, 6.6vw, 3.5rem); line-height: 1.02;
  letter-spacing: -.02em; margin-bottom: 22px;
}
.feat-title-tail {
  display: block; font-style: italic; font-weight: 400; color: var(--brass);
}
.feat--rust .feat-title-tail { color: var(--rust-lift); }

.feat-billing {
  font-family: var(--ff-util); font-size: .78rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--dim);
  padding-top: 20px; border-top: 1px solid var(--line);
}
.feat-artist {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.7rem, 5.4vw, 2.6rem); line-height: 1.06;
  letter-spacing: -.015em; margin: 6px 0 22px; color: var(--text);
}
.feat-artist-tail {
  display: block; font-style: italic; font-weight: 400;
  font-size: .78em; color: var(--brass);
}
.feat-artist--game {
  font-size: clamp(1.35rem, 4.2vw, 1.95rem); font-style: italic;
  font-weight: 400; color: var(--rust-lift);
}
.feat-where {
  font-family: var(--ff-util); font-size: 1rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.feat-copy { color: var(--muted); max-width: 58ch; font-size: 1.04rem; }

.bill { margin: 26px 0 0; }
.bill-row {
  display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 14px;
  padding: 11px 0; border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.bill-row dt {
  font-family: var(--ff-util); font-size: .78rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim);
}
.bill-row dd { margin: 0; color: var(--text); font-size: .98rem; }

.feat-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }

/* click-to-play video — nothing loads from YouTube until it is clicked */
.vid { margin-top: 0; }
.vid-btn {
  position: relative; display: block; width: 100%; padding: 0; cursor: pointer;
  background: var(--night-3); border: 1px solid var(--line); color: var(--text);
  overflow: hidden;
}
.vid-btn img { width: 100%; height: auto; opacity: .74; transition: opacity .25s ease; }
.vid-btn:hover img { opacity: .94; }
.vid-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--brass); display: block;
}
.vid-play::after {
  content: ""; position: absolute; left: 55%; top: 50%;
  transform: translate(-50%, -50%);
  border-left: 17px solid var(--on-brass);
  border-top: 11px solid transparent; border-bottom: 11px solid transparent;
}
.vid-cap {
  display: block; padding: 12px 16px; text-align: left;
  font-family: var(--ff-util); font-size: .84rem; letter-spacing: .16em;
  text-transform: uppercase; border-top: 1px solid var(--line);
}
.vid-frame { aspect-ratio: 16 / 9; width: 100%; border: 1px solid var(--line); }
.vid-cred { font-size: .84rem; color: var(--dim); margin-top: 8px; }

/* --------------------------------------------------------------- details -- */
.more { margin-top: 20px; border-top: 1px solid var(--line-soft); }
.more > summary {
  list-style: none; cursor: pointer; min-height: var(--tap);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-util); font-size: .86rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brass);
}
.more > summary::-webkit-details-marker { display: none; }
.more > summary::after {
  content: "+"; margin-left: auto; font-size: 1.15rem; line-height: 1;
  color: var(--dim);
}
.more[open] > summary::after { content: "\2013"; }
.more > summary:hover { color: var(--brass-lift); }
.more-in { padding-bottom: 20px; color: var(--muted); max-width: 60ch; }
.more-in p + p { margin-top: 14px; }
.feat--rust .more > summary { color: var(--rust-lift); }

.linkrow {
  margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-family: var(--ff-util); font-size: .86rem; letter-spacing: .14em;
  text-transform: uppercase;
}

/* ----------------------------------------------- everything going on ------ */
/* A warm programme card laid over the night. One deliberate ground change in
   the whole page, and it maps exactly to the content: the printed schedule. */
.going { padding: clamp(56px, 9vw, 110px) var(--gutter); background: var(--night); }
.going-card {
  background: var(--bone); color: var(--ink);
  padding: clamp(28px, 5.4vw, 68px);
  border-radius: 2px;
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, .9);
  background-image:
    radial-gradient(140% 60% at 50% 0%, rgba(255, 255, 255, .5), transparent 60%);
}
.going-head { max-width: 62ch; }
.going-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2rem, 6.6vw, 3.2rem); line-height: 1.02;
  letter-spacing: -.02em; margin-bottom: 16px;
}
.going-lede { color: var(--ink-muted); max-width: 58ch; }

.prog {
  list-style: none; margin: clamp(30px, 5vw, 52px) 0 0; padding: 0;
  counter-reset: none;
}
.prog-item {
  display: grid; gap: 12px;
  padding: clamp(24px, 3.6vw, 34px) 0;
  border-top: 1px solid var(--bone-line);
}
.prog-item:first-child { border-top: 0; padding-top: 0; }
@media (min-width: 720px) {
  .prog-item { grid-template-columns: 128px minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); }
}

.prog-rail {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
@media (min-width: 720px) {
  .prog-rail { flex-direction: column; align-items: flex-start; gap: 2px; }
}
.prog-day {
  font-family: var(--ff-util); font-weight: 600; font-size: .84rem;
  letter-spacing: .24em; text-transform: uppercase; color: var(--brass-deep);
}
.prog-date {
  font-family: var(--ff-util); font-size: .84rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-dim);
}
.prog-time {
  font-family: var(--ff-display); font-size: 1.22rem; line-height: 1.2;
  color: var(--ink); font-weight: 400;
}
@media (min-width: 720px) { .prog-time { margin-top: 6px; } }

.prog-body { min-width: 0; }
.prog-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.28rem, 3.6vw, 1.62rem); line-height: 1.15;
  letter-spacing: -.012em; margin-bottom: 6px;
}
.prog-where {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--ff-util); font-size: .92rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-muted);
}
.vlogo { display: inline-flex; flex: none; }
.vlogo img { height: 22px; width: auto; max-width: 92px; object-fit: contain; }
.prog-addr { margin-top: 4px; font-size: .92rem; }
.prog-addr a { color: var(--brass-deep); }
.prog-addr a:hover { color: var(--rust-deep); }
.prog-line { margin-top: 12px; color: var(--ink); font-size: 1.03rem;
             max-width: 56ch; }
.prog-story { margin-top: 10px; color: var(--ink-muted); max-width: 62ch; }
.prog-note {
  margin-top: 10px; padding-left: 14px; border-left: 2px solid var(--bone-line);
  color: var(--ink-muted); font-size: .95rem; max-width: 60ch;
}
.prog-body .linkrow a { color: var(--brass-deep); }
.prog-body .linkrow a:hover { color: var(--rust-deep); }

/* ---------------------------------------------------------------- rsvp ---- */
.rsvp {
  padding: clamp(64px, 10vw, 124px) var(--gutter);
  border-top: 1px solid var(--line-soft);
}
.sec-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.9rem, 5.6vw, 2.9rem); line-height: 1.05;
  letter-spacing: -.02em; margin-bottom: 14px;
}
.sec-lede { color: var(--muted); max-width: 56ch; margin-bottom: 34px; }

.rsvp-form { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.fld { margin-bottom: 22px; }
.fld > label {
  display: block; margin-bottom: 7px;
  font-family: var(--ff-util); font-size: .88rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.tag {
  font-size: .78em; letter-spacing: .12em; color: var(--dim);
  text-transform: none;
}
.hint { margin-top: 7px; font-size: .9rem; color: var(--dim); max-width: 52ch; }

input[type="text"], input[type="number"], select, textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  font-family: var(--ff-body); font-size: 16px; line-height: 1.5;
  color: var(--text); background: var(--night-2);
  border: 1px solid var(--line); border-radius: 2px;
  transition: border-color .18s ease, background .18s ease;
}
textarea { min-height: 96px; resize: vertical; }
select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%),
                    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
  padding-right: 44px;
}
input:hover, select:hover, textarea:hover { border-color: var(--line); background: var(--night-3); }
input:focus, select:focus, textarea:focus { border-color: var(--brass); background: var(--night-3); }
::placeholder { color: #7f8896; opacity: 1; }

.picks {
  border: 1px solid var(--line); border-radius: 2px; margin: 0 0 22px;
  padding: 8px clamp(14px, 3vw, 22px) 16px;
}
.picks-legend {
  font-family: var(--ff-util); font-size: .82rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brass); padding: 0 8px;
}
.pick {
  display: flex; align-items: flex-start; gap: 13px;
  min-height: var(--tap); padding: 11px 0; cursor: pointer;
  border-top: 1px solid var(--line-soft);
}
.picks .pick:first-of-type { border-top: 0; }
.pick input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pick-box {
  flex: none; width: 22px; height: 22px; margin-top: 3px;
  border: 1px solid var(--line); border-radius: 2px; position: relative;
  transition: background .18s ease, border-color .18s ease;
}
.pick-box::after {
  content: ""; position: absolute; left: 7px; top: 3px;
  width: 6px; height: 11px; border: solid var(--on-brass);
  border-width: 0 2px 2px 0; transform: rotate(45deg) scale(0);
  transition: transform .16s ease;
}
.pick input:checked + .pick-box { background: var(--brass); border-color: var(--brass); }
.pick input:checked + .pick-box::after { transform: rotate(45deg) scale(1); }
.pick input:focus-visible + .pick-box {
  outline: 2px solid var(--brass-lift); outline-offset: 3px;
}
.pick-text { color: var(--muted); line-height: 1.45; }
.pick input:checked ~ .pick-text { color: var(--text); }
.pick--headline .pick-text {
  font-family: var(--ff-body); font-weight: 700; font-size: 1.05rem;
  color: var(--text);
}
.pick-sub {
  display: block; font-family: var(--ff-util); font-weight: 400;
  font-size: .84rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dim); margin-top: 2px;
}

.fld-check { margin-bottom: 18px; }
.opt {
  display: flex; align-items: center; gap: 12px; min-height: var(--tap);
  cursor: pointer; color: var(--muted);
}
.opt input { width: 20px; height: 20px; min-height: 0; accent-color: var(--brass); flex: none; }

.fine { margin-top: 16px; font-size: .9rem; color: var(--dim); max-width: 54ch; }

/* -------------------------------------------------------------- footer ---- */
.footer {
  padding: clamp(48px, 7vw, 80px) var(--gutter) clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--line-soft); background: var(--night);
}
.ft-name {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.4rem;
  letter-spacing: -.01em;
}
.ft-line {
  font-family: var(--ff-util); font-size: .86rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim); margin-top: 6px;
}
.ft-note { margin-top: 20px; color: var(--muted); max-width: 52ch;
           font-style: italic; }
.ft-fine { margin-top: 18px; font-size: .88rem; color: var(--dim); max-width: 60ch; }

/* --------------------------------------------------------- mini pages ----- */
.mini { padding: clamp(70px, 12vw, 140px) var(--gutter) clamp(60px, 9vw, 110px); }
.mini .btn { margin-top: 30px; }
.mini p { color: var(--muted); max-width: 56ch; }
.mini p + p { margin-top: 14px; }

/* ---------------------------------------------------------- planning ------ */
.planning { padding: clamp(56px, 9vw, 110px) var(--gutter); }
.pl-h2 {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem;
  margin: clamp(40px, 6vw, 64px) 0 18px; padding-top: 22px;
  border-top: 1px solid var(--line);
}
.todos { list-style: none; margin: 0; padding: 0; counter-reset: todo; }
.todo {
  counter-increment: todo; padding: 20px 0; border-top: 1px solid var(--line-soft);
  display: grid; gap: 6px;
}
.todo:first-child { border-top: 0; }
@media (min-width: 760px) {
  .todo { grid-template-columns: 190px minmax(0, 1fr); gap: 8px 32px; }
  .todo-title { grid-column: 2; }
  .todo p { grid-column: 2; }
  .todo-when { grid-row: 1 / span 3; }
}
.todo-when {
  font-family: var(--ff-util); font-size: .8rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--rust-lift);
}
.todo-title {
  font-family: var(--ff-body); font-weight: 700; font-size: 1.06rem;
  color: var(--text);
}
.todo p { color: var(--muted); max-width: 62ch; }
.todo::before {
  content: counter(todo, decimal-leading-zero); display: none;
}
.pv-grid { display: grid; gap: 26px; }
@media (min-width: 860px) { .pv-grid { grid-template-columns: 1fr 1fr; } }
.pv { border: 1px solid var(--line-soft); padding: 22px; border-radius: 2px; }
.pv-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.18rem; }
.pv-meta {
  font-family: var(--ff-util); font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim); margin: 6px 0 14px;
}
.pv-list { margin: 0; padding-left: 20px; color: var(--muted); }
.pv-list li + li { margin-top: 8px; }
.pv-list--wide { max-width: 76ch; }
.pv-src { margin: 0; padding-left: 20px; }

/* --------------------------------------------------------------- motion --- */
.reveal { opacity: 0; transform: translateY(14px); }
.js .reveal { animation: rise .78s cubic-bezier(.22, .68, .28, 1) forwards; }
.js .reveal.d1 { animation-delay: .06s; }
.js .reveal.d2 { animation-delay: .13s; }
.js .reveal.d3 { animation-delay: .21s; }
.js .reveal.d4 { animation-delay: .29s; }
.js .reveal.d5 { animation-delay: .37s; }
.js .reveal.d6 { animation-delay: .46s; }
@keyframes rise { to { opacity: 1; transform: none; } }
/* No JS, or reduced motion: everything is simply present. */
.no-js .reveal, .reveal { }
html:not(.js) .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { animation: none; opacity: 1; transform: none; }
}

/* Long strings that could push a 320px viewport sideways. */
.prog-addr, .bill-row dd, .linkrow, .feat-where, .prog-where {
  overflow-wrap: anywhere;
}

/* Scroll reveal. Enhancement only — without JS the .js class is never added
   and every .sr element is simply visible. */
.js .sr {
  opacity: 0; transform: translateY(20px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, .68, .28, 1);
}
.js .sr.sr-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .sr { opacity: 1; transform: none; transition: none; }
}
/* Never let an animation hide content from a printer or a reader mode. */
@media print {
  .js .sr, .js .reveal { opacity: 1 !important; transform: none !important;
                         animation: none !important; }
}

/* A checkbox that ticks itself with no visible cause is confusing, so the row
   a deep-linked CTA just filled in is flashed once. */
.pick-flash { animation: pickflash 1.4s ease; }
@keyframes pickflash {
  0%, 100% { background: transparent; }
  18%      { background: rgba(217, 168, 92, .16); }
}


/* ------------------------------------------------- feature standfirst ----- */
/* The venue narrative. Set in the display face so it reads as a different
   register from the event copy above it — this is the story, not the details. */
.feat-story {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
}
.feat-kicker {
  font-family: var(--ff-util); font-size: .78rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 12px;
}
.feat-story-p {
  font-family: var(--ff-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.14rem, 2.6vw, 1.35rem); line-height: 1.5;
  color: var(--text); max-width: 46ch;
}
.feat--rust .feat-story-p { color: var(--text); }

.ft-cred {
  margin-top: 12px; font-size: .82rem; color: var(--dim); max-width: 62ch;
}


/* --------------------------------------------------------------- ticket --- */
.ticket {
  margin-top: 18px; padding: 16px 18px; border: 1px solid var(--bone-line);
  border-radius: 2px; background: rgba(20, 24, 33, .035);
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  max-width: 56ch;
}
.btn--ink { background: var(--ink); color: var(--bone); }
.btn--ink:hover { background: #262d3a; color: var(--bone); }
.ticket-note { color: var(--ink-muted); font-size: .95rem; }

/* ------------------------------------------------- timeline thumbnails ---- */
/* One 4:3 render serves both crops, so a phone and a desktop share a file. */
.prog-thumb { margin: 0 0 4px; min-width: 0; }
.prog-thumb img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border: 1px solid var(--bone-line); border-radius: 2px;
}
@media (min-width: 720px) {
  .prog-item { grid-template-columns: 128px minmax(0, 1fr); }
}
@media (min-width: 940px) {
  .prog-item { grid-template-columns: 128px minmax(0, 1fr) 200px; }
  .prog-item .prog-thumb { grid-column: 3; grid-row: 1; margin: 0; }
  .prog-item .prog-rail  { grid-column: 1; grid-row: 1; }
  .prog-item .prog-body  { grid-column: 2; grid-row: 1; }
  .prog-thumb img { aspect-ratio: 1 / 1; }
}

/* --------------------------------------------------------- photo band ----- */
.band { margin: 0; position: relative; }
.band img {
  width: 100%; height: auto; display: block;
  filter: saturate(.86) contrast(1.04) brightness(.94);
}
.band-cred {
  position: absolute; right: var(--gutter); bottom: 12px;
  font-family: var(--ff-util); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(245, 242, 235, .72);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .9);
}

/* ------------------------------------------------------------- rooms ------ */
.rooms {
  padding: clamp(48px, 7vw, 84px) var(--gutter);
  border-top: 1px solid var(--line-soft);
}
.room-list {
  list-style: none; margin: 6px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(24px, 5vw, 56px);
}
.room a {
  display: flex; align-items: center; min-height: var(--tap); padding: 6px 0;
}
.room img {
  height: 34px; width: auto; max-width: 132px; object-fit: contain;
  /* Their own colours, on the night. Two of these marks ship printed on a
     solid black plate; the plate is keyed out at build time (see
     scripts/prepare_assets.py, key_black) so nothing sits in a visible slab.
     Held slightly back so the line reads as a credit, not a sponsor board. */
  opacity: .72;
  transition: opacity .25s ease, transform .25s ease;
}
.room a:hover img, .room a:focus-visible img { opacity: 1; transform: translateY(-2px); }
@media (min-width: 620px) { .room img { height: 40px; max-width: 152px; } }
.rooms-note {
  margin-top: 26px; color: var(--dim); font-size: .9rem; max-width: 58ch;
}
