/* Press kit — /press-kit, also served as the one-sheet via the print rules at
   the bottom of this file. Loaded after style.css, so the :root tokens and the
   .btn / .sounds-like / .eyebrow rules there are already in play. */

.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ---------- hero ---------- */
.pk-hero { text-align: center; padding: 58px 24px 22px; }
.pk-hero .eyebrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--tangerine); margin: 0 0 12px;
}
.pk-hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 8vw, 76px); line-height: 1;
  letter-spacing: 0.03em; margin: 0 0 14px; color: var(--cream);
}
.pk-hero h1 span { color: var(--magenta); }
.pk-hero .lede {
  color: var(--cream-dim); font-size: 17px; line-height: 1.5;
  max-width: 46ch; margin: 0 auto 20px;
}
.pk-facts { justify-content: center; margin-bottom: 24px; }
.pk-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pk-cta .btn { cursor: pointer; font-family: var(--display); }

/* ---------- sections ---------- */
.s { padding: 34px 0 6px; border-top: 1px solid var(--hairline); margin-top: 30px; }
.s:first-child { border-top: 0; margin-top: 0; }
.s h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(22px, 3vw, 28px); letter-spacing: 0.02em;
  margin: 0 0 16px; color: var(--green);
}
.s p { color: var(--cream-dim); line-height: 1.68; max-width: 66ch; margin: 0 0 14px; }
.s p em { color: var(--cream); font-style: italic; }
#about p { color: var(--cream); font-size: 18px; }

.pk-note { font-size: 14px; color: var(--cream-dim); }
.pk-note a { color: var(--cyan); }
.pk-player { border: 0; width: 100%; height: 120px; margin: 0 0 14px; }

/* ---------- lineup ---------- */
.lineup { list-style: none; margin: 0; padding: 0; max-width: 66ch; }
.lineup li {
  display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: baseline;
  padding: 10px 2px; border-bottom: 1px solid var(--hairline);
}
.m-name { font-family: var(--display); font-size: 18px; color: var(--cream); letter-spacing: 0.02em; }
.m-role {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cream-dim); margin-left: auto;
}
/* "On Wicked Din" — the album's players, shown only when they differ from the
   current lineup. */
.pk-sub {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--tangerine);
  font-weight: 400; margin: 26px 0 4px;
}
.pk-sub em { font-style: italic; }
/* The lineup names link to /band/<slug>. They were <span>s, so this keeps them
   looking exactly as they did and only adds the hover -- a lineup that suddenly
   turned link-blue would read as a different design rather than a new feature. */
a.m-name { color: inherit; text-decoration: none; }
a.m-name:hover { color: var(--magenta); }
/* "ChameleouS EmerituS" is a name, and its capital S is the band's wordmark --
   the same S the nav mark and the hero colour. .pk-sub uppercases everything,
   which would flatten it to CHAMELEOUS EMERITUS and lose the only thing the name
   is doing. So this one subhead keeps its case and its colour. */
.pk-sub-name {
  text-transform: none;
  font-family: var(--display);
  font-size: 15px; letter-spacing: 0.02em;
  color: var(--cream);
}
.pk-sub-name span, .pk-note .wm { color: var(--magenta); }

/* ---------- critical praise ---------- */
/* Generated from notes/press/. A booking agent should be able to see in one
   glance that independent writers have covered the band. */
.pk-coverage { margin-top: 26px; }
.pk-coverage h3 {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cream-dim);
  font-weight: 400; margin: 0 0 10px;
}
.pk-coverage ul { list-style: none; margin: 0 0 12px; padding: 0; max-width: 66ch; }
.pk-coverage li {
  display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: baseline;
  padding: 9px 2px; border-bottom: 1px solid var(--hairline);
}
.pk-cov-pub {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--tangerine); min-width: 15ch;
}
.pk-coverage li a { color: var(--cream); text-decoration: none; flex: 1 1 16ch; }
.pk-coverage li a:hover { color: var(--magenta); }
/* Paid-campaign disclosure, on screen and on the printed one-sheet. A booking
   agent reads the sheet; that is exactly where leaving it off would matter. */
.pk-disclose {
  margin: 18px 0 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--cream-dim); opacity: 0.7;
}
.pk-disclose a { color: inherit; }
.pk-disclose a:hover { color: var(--cyan); }

.pk-cov-date {
  font-family: var(--mono); font-size: 11.5px; color: var(--cream-dim);
  margin-left: auto;
}

/* ---------- press photos ---------- */
.pk-photos {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; margin-top: 6px;
}
.pk-photos figure { margin: 0; }
.pk-photos img {
  width: 100%; height: 190px; object-fit: cover;
  border-radius: 10px; border: 1px solid var(--hairline); display: block;
  transition: transform 0.16s ease, border-color 0.16s ease;
}
.pk-photos a:hover img { transform: translateY(-2px); border-color: var(--magenta); }
.pk-photos figcaption { font-size: 13px; color: var(--cream-dim); margin-top: 7px; line-height: 1.45; }
.pk-photos .cred {
  display: block; font-size: 12px; color: var(--cream-dim);
  opacity: 0.85; margin-top: 2px;
}
.pk-photos .cred a { color: var(--cyan); text-decoration: none; }
.pk-photos .cred a:hover { color: var(--magenta); }
.pk-photos .dl {
  display: block; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.06em; color: var(--green); text-decoration: none; margin-top: 3px;
}
.pk-photos .dl:hover { color: var(--magenta); }

/* ---------- logo ---------- */
.pk-logo { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.pk-logo img {
  width: 190px; height: 190px; flex: none;
  /* The emblem is transparent line art on a light ground, so it needs something
     behind it here rather than sitting on the page's near-black. */
  background: var(--cream); border-radius: 50%; padding: 8px;
}
.pk-logo > div { flex: 1 1 240px; }
.pk-logo .pk-note { margin-bottom: 14px; }

/* ---------- quotes ---------- */
.pk-quote {
  margin: 0 0 18px; border-left: 3px solid var(--tangerine); padding: 4px 0 4px 18px;
  max-width: 66ch;
}
.pk-quote p { color: var(--cream); font-size: 18px; font-style: italic; margin: 0 0 6px; }
.pk-quote cite {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cream-dim); font-style: normal;
}

/* ---------- live ---------- */
.pk-dates { list-style: none; margin: 0 0 14px; padding: 0; max-width: 66ch; }
.pk-dates li {
  display: flex; gap: 16px; align-items: baseline;
  padding: 8px 2px; border-bottom: 1px solid var(--hairline);
}
.pk-dates .d {
  font-family: var(--mono); font-size: 13px; color: var(--tangerine);
  min-width: 6ch; text-transform: uppercase;
}
.pk-dates .v { color: var(--cream); }

.pk-contact { font-size: 19px; color: var(--cream); }
.pk-contact a { color: var(--magenta); }

#contact { padding-bottom: 70px; }

@media (max-width: 560px) {
  .pk-photos { grid-template-columns: 1fr 1fr; }
  .pk-photos img { height: 140px; }
  .m-role { margin-left: 0; }
}

/* ---------- the one-sheet ----------
   Printing this page has to produce something a promoter can actually email:
   one side of A4/Letter, dark theme dropped for ink, everything interactive or
   decorative removed. /onesheet redirects here, so this IS the one-sheet -- no
   second page of the same facts to drift out of date. */
@media print {
  @page { margin: 14mm; }

  html, body { background: #fff !important; color: #111 !important; }
  .song-bg, .song-veil, nav, footer, .pk-cta, .pk-player,
  #listen, #live, .pk-photos .dl, .s .pk-note { display: none !important; }

  /* Keep one photo for identification; drop the rest of the grid. Size it to the
     promo shot's own 3:2 so nothing is cropped -- a fixed height across the full
     text column crops the band's heads off. Smaller than it used to be: critical
     praise now has to fit on the same sheet. */
  #photos h2 { display: none !important; }
  .pk-photos { display: block !important; }
  .pk-photos figure { display: none !important; }
  .pk-photos figure:first-child { display: block !important; }
  .pk-photos img {
    width: 58mm !important; height: 39mm !important;
    object-fit: cover; object-position: 50% 30%;
    border: 0 !important; border-radius: 0 !important;
  }
  .pk-photos figcaption { font-size: 8pt !important; color: #555 !important; }

  .wrap-narrow { max-width: none; padding: 0; }
  .pk-hero { padding: 0 0 3mm; text-align: left; }
  .pk-hero h1 { font-size: 30pt; color: #111 !important; margin: 0 0 2mm; }
  .pk-hero h1 span { color: #111 !important; }
  .pk-hero .eyebrow { color: #666 !important; font-size: 8pt; margin: 0 0 1mm; }
  .pk-hero .lede { font-size: 10pt; color: #333 !important; max-width: none; margin: 0 0 3mm; }
  .pk-facts { justify-content: flex-start; margin: 0 0 4mm; }
  .pk-facts span { border-color: #bbb !important; color: #333 !important; font-size: 8pt; padding: 2px 8px; }

  .s { border-top: 0; margin: 0 0 2.5mm; padding: 0; }
  .s h2 { color: #111 !important; font-size: 12pt; margin: 0 0 1.5mm; }
  .s p { color: #222 !important; font-size: 9.5pt; line-height: 1.35; max-width: none; margin: 0 0 2mm; }
  #about p { font-size: 9.5pt; }

  /* The full biography is the first thing to go: the short "About" block says
     the same thing in a paragraph, and this has to fit one page. */
  #bio { display: none !important; }

  /* Same reason: the stage plot is a whole diagram, and a promoter who
     wants it has the full page. The one-sheet stays one sheet. */
  #rider { display: none !important; }

  /* Critical praise earns its place on a one-sheet — it is the first thing a
     booking agent looks for. Two quotes, though, not six, and the coverage list
     stays on the web page: the sheet has to remain one sheet, and the URL under
     it gets them the rest.
     Measured, not guessed: on US Letter (the tighter of the two, at 950px of
     usable height against A4's 1017) this lands at ~906px. If you add anything
     here, measure again -- the logo section had to go to make room as it was. */
  /* THE ONE-SHEET SHOWS THE CURRENT LINEUP AND NOTHING ELSE.
     Adding the album personnel and the Emeritus list took the printed page to
     1055px against Letter's 950 -- measured, which is the only reason it was
     caught. Both are on the web page, and neither answers the question a
     promoter is holding this sheet to answer: who turns up, and what do they
     play. The album credits are also on the record itself.
     The heading kept its case rather than its colour, because it is a name. */
  #band .pk-sub, #band .pk-note,
  #band .lineup ~ .lineup { display: none !important; }
  a.m-name { color: #111 !important; }
  .pk-sub-name { color: #111 !important; text-transform: none; }
  #logo { display: none !important; }
  #praise .pk-quote:nth-of-type(n + 3) { display: none !important; }
  .pk-coverage ul, .pk-coverage h3 { display: none !important; }
  .pk-coverage .pk-note { display: block !important; font-size: 8pt !important; }
  .pk-disclose {
    display: block !important; color: #666 !important;
    font-size: 7pt !important; margin: 2mm 0 0;
  }
  .pk-sub { color: #555 !important; font-size: 8pt !important; margin: 2mm 0 1mm; }

  /* One running line rather than six rows -- the way a real one-sheet sets a
     lineup, and it buys back the vertical space critical praise needs. */
  .lineup { display: block; }
  .lineup li { border-bottom: 0; padding: 0; display: inline; line-height: 1.5; }
  .lineup li:not(:last-child)::after { content: " · "; color: #999 !important; }
  .m-name { font-size: 9.5pt; color: #111 !important; }
  .m-role { color: #555 !important; font-size: 8pt; margin-left: 5px; text-transform: none; letter-spacing: 0; }
  .m-role::before { content: "("; }
  .m-role::after { content: ")"; }

  .pk-quote { border-left: 2px solid #999; padding-left: 4mm; margin-bottom: 2mm; }
  .pk-quote p { color: #111 !important; font-size: 9pt; }
  .pk-quote cite { color: #555 !important; font-size: 8pt; }

  .pk-contact, .pk-contact a { color: #111 !important; font-size: 10pt; }
  #contact { padding-bottom: 0; }
  /* Ink, not cyan. A printed link that stays link-coloured just prints grey. */
  a { text-decoration: none; color: #111 !important; }
}

/* ---------- stage plot ---------- */
/* A venue reads a plot as a picture. Two rows of three positions, upstage at
   the top, exactly as the band's own stage-plot document lays it out. */
.stageplot { max-width: 66ch; margin: 0 0 18px; }
.sp-edge {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cream-dim);
  text-align: center; margin: 0; padding: 6px 0;
}
.sp-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 10px; }
.sp-cell {
  background: color-mix(in srgb, var(--ink-2) 82%, transparent);
  border: 1px solid var(--hairline); border-radius: 10px;
  padding: 16px 12px 14px; text-align: center; min-height: 92px;
  display: flex; flex-direction: column; justify-content: center;
}
.sp-cell.empty { background: none; border-style: dashed; opacity: 0.35; }
.sp-cell b {
  font-family: var(--display); font-weight: 400; font-size: 15px;
  color: var(--cream); letter-spacing: 0.02em; line-height: 1.25;
}
/* The requirements are a separate fact from the position, so they get real
   separation and a rule above them rather than sitting flush under the name. */
.sp-cell span {
  font-family: var(--mono); font-size: 11px; color: var(--green);
  letter-spacing: 0.04em; line-height: 1.4;
  margin-top: 10px; padding-top: 9px;
  border-top: 1px solid var(--hairline);
}
@media (max-width: 620px) {
  .sp-row { grid-template-columns: 1fr; gap: 8px; }
  .sp-cell { min-height: 0; padding: 10px; }
}
