/* =========================================================
   Maccheroni Comedy — "Brutal" redesign (homepage + press kit)

   Implements the Claude Design mockups "Maccheroni Feral
   Verticale" and "Maccheroni Press Kit". The mockups carry
   their styling inline; here everything lives in classes so
   the pages stay CSP-clean (no inline script, hover states in
   CSS instead of JS).

   Palette (from the mockups): ink #141414, cream #F5F1E6,
   red #CA3433, green #2F6620.
   ========================================================= */

:root {
  --bk: #141414;
  --br-cream: #F5F1E6;
  --br-red: #CA3433;
  --br-green: #2F6620;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bk);
  color: var(--br-cream);
}

body.brutal {
  font-family: Archivo, system-ui, sans-serif;
}

.brutal a { color: var(--br-red); text-decoration: none; }
.brutal a:hover { color: var(--br-cream); }
.brutal ::selection { background: var(--br-red); color: var(--br-cream); }

@keyframes macUp {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(0, -50%, 0); }
}
@keyframes macBlink {
  0%, 92%, 100% { opacity: 1; }
  95%           { opacity: .15; }
}
@media (prefers-reduced-motion: reduce) {
  .brutal * { animation: none !important; }
}

/* ---- shared micro-typography ---- */
.br-label {
  font-size: 10px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
}
.br-serif {
  font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
}
.br-stamp { /* the red "stabilo" boxes inside serif sentences */
  font-family: Archivo, sans-serif; font-style: normal; font-weight: 900;
  font-variation-settings: 'wdth' 68, 'wght' 900;
  text-transform: uppercase; font-size: .78em;
  background: var(--br-red); color: var(--br-cream);
  padding: 0 .16em; white-space: nowrap;
}
.br-stamp--green { background: var(--br-green); font-size: .72em; }

/* ---- page frame + fixed scroll progress bar ---- */
.br-page {
  position: relative; width: 100%;
  padding-right: 7px; box-sizing: border-box;
  background: var(--bk);
}
.br-progress {
  position: fixed; top: 0; bottom: 0; right: 0; width: 7px; z-index: 40;
  background: rgba(245,241,230,.14); pointer-events: none;
}
.br-progress__fill { height: 0%; width: 100%; display: flex; flex-direction: column; }
.br-progress__fill > div:nth-child(1) { flex: 1; background: var(--br-green); }
.br-progress__fill > div:nth-child(2) { flex: 1; background: var(--br-cream); }
.br-progress__fill > div:nth-child(3) { flex: 1; background: var(--br-red); }

/* ---- hero ---- */
.br-hero { display: flex; align-items: stretch; height: 100vh; min-height: 560px; }
.br-hero__rail {
  width: clamp(74px, 9vw, 150px); flex: none; background: var(--br-green);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px;
}
.br-hero__rail-pattern {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  gap: 24px; padding: 16px 0; opacity: .2;
}
.br-hero__rail-pattern img { width: 62%; display: block; flex: none; }
.br-vtext {
  position: relative; writing-mode: vertical-rl;
  font-size: 11px; font-weight: 800; letter-spacing: .32em; text-transform: uppercase;
}
.br-hero__main {
  flex: 1; min-width: 0; background: var(--br-cream); color: var(--bk);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(16px, 2.4vw, 34px);
}
.br-hero__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.br-hero__logo { height: clamp(34px, 4.6vw, 62px); animation: macBlink 7s steps(1, end) infinite; }
.br-hero__tag { text-align: right; color: var(--br-green); }
.br-hero__corner { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.br-socials { display: flex; gap: 12px; }
.br-socials a { display: block; color: #E8755F; transition: color .16s, transform .16s; }
.br-page .br-socials a { color: #E8755F; }
.br-socials a:hover { color: var(--br-red); transform: translateY(-2px); }
.br-socials svg { width: 19px; height: 19px; display: block; }
.br-hero__title {
  margin: 0; font-family: 'Dela Gothic One', Archivo, sans-serif; font-weight: 400;
  font-size: clamp(34px, 9.6vw, 158px); line-height: .92; letter-spacing: -.02em;
  text-transform: uppercase; word-break: break-word;
}
.br-hero__title span { color: var(--br-red); }
.br-hero__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.br-hero__claim { margin: 0; font-size: clamp(20px, 2.8vw, 42px); line-height: 1.04; max-width: 26ch; }
.br-hero__scroll { font-size: 10px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: var(--br-green); }

/* red vertical event ticker */
.br-ticker { width: clamp(58px, 7vw, 120px); flex: none; background: var(--br-red); position: relative; overflow: hidden; }
/* top-anchored with no bottom so the element's height fits its content:
   the -50% translate then equals exactly one duplicated set and the
   loop is seamless through every date */
.br-ticker__scroll { position: absolute; top: 0; left: 0; right: 0; display: flex; flex-direction: column; animation: macUp 26s linear infinite; }
.br-ticker__set { display: flex; flex-direction: column; align-items: center; gap: 38px; padding: 22px 0; }
.br-ticker__set span {
  writing-mode: vertical-rl; font-size: 12px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; white-space: nowrap;
}

/* ---- numbered section spine ---- */
.br-section { display: flex; align-items: stretch; background: var(--bk); }
.br-section--cream { background: var(--br-cream); color: var(--bk); }
.br-spine {
  writing-mode: vertical-rl; padding: 16px 10px;
  font-size: 11px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase;
  flex: none;
}
.br-spine--cream { background: var(--br-cream); color: var(--bk); }
.br-spine--red   { background: var(--br-red);   color: var(--br-cream); }
.br-spine--green { background: var(--br-green); color: var(--br-cream); }
.br-spine--ink   { background: var(--bk);       color: var(--br-cream); }
.br-spine--on-red { color: var(--br-red); }

/* ---- 01 chi siamo ---- */
.br-about {
  flex: 1; min-width: 0; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 26px;
  padding: clamp(26px, 5vw, 80px) clamp(18px, 3vw, 48px);
}
.br-about__claim { margin: 0; font-size: clamp(28px, 4.4vw, 68px); line-height: 1.02; max-width: 22ch; }
.br-about__side { display: flex; flex-direction: column; gap: 18px; max-width: 42ch; }
.br-about__copy { margin: 0; font-size: 13px; line-height: 1.75; opacity: .72; }

/* ---- 02 team ---- */
.br-team { flex: 1; min-width: 0; display: flex; height: clamp(420px, 78vh, 760px); }
.br-perf {
  position: relative; height: 100%; min-width: 0; flex: 1 1 0;
  background-color: var(--br-cream); background-size: cover; background-position: center 24%;
  border-right: 2px solid var(--bk); overflow: hidden;
  filter: grayscale(100%) contrast(1.3) brightness(.82);
  transition: filter .5s ease-out, flex .65s cubic-bezier(.25, .46, .45, .94);
}
.br-perf:hover, .br-perf:focus-within, .br-perf.is-active {
  filter: grayscale(0) contrast(1.02) brightness(1); flex: 3 1 0;
}
.br-perf__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,.72) 0%, rgba(20,20,20,.14) 40%, rgba(20,20,20,.88) 100%);
}
.br-perf__num {
  position: absolute; left: 0; right: 0; top: 13px; text-align: center;
  font-size: 10px; font-weight: 800; letter-spacing: .2em; opacity: .7;
}
.br-perf__name {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(180deg); writing-mode: vertical-rl;
  font-family: Archivo, sans-serif; font-weight: 900;
  font-variation-settings: 'wdth' 70, 'wght' 900;
  font-size: clamp(28px, 3.6vw, 56px); line-height: .9; letter-spacing: -.02em;
  text-transform: uppercase; white-space: nowrap;
  transition: left .65s cubic-bezier(.25, .46, .45, .94), bottom .5s ease;
}
.br-perf__quote {
  position: absolute; left: 11px; right: 11px; bottom: 15px;
  font-size: 13px; line-height: 1.18; opacity: 1; transition: opacity .35s ease;
}
.br-perf__bio {
  position: absolute; left: 14px; right: 14px; bottom: 15px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .45s ease .15s, transform .45s ease .15s; pointer-events: none;
}
.br-perf:hover .br-perf__quote, .br-perf:focus-within .br-perf__quote, .br-perf.is-active .br-perf__quote { opacity: 0; }
.br-perf:hover .br-perf__bio, .br-perf:focus-within .br-perf__bio, .br-perf.is-active .br-perf__bio { opacity: 1; transform: translateY(0); }
/* on the expanded tile the vertical name slides to the left edge so it
   doesn't sit on top of the photo and bio */
@media (min-width: 761px) {
  .br-perf:hover .br-perf__name, .br-perf:focus-within .br-perf__name { left: 44px; }
}
.br-perf__bio-quote { font-size: clamp(15px, 1.4vw, 19px); line-height: 1.2; }
.br-perf__bio-text { font-size: 12px; line-height: 1.6; opacity: .85; }

/* ---- 03 eventi ---- */
.br-events { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.br-event {
  display: grid;
  grid-template-columns: clamp(72px, 9vw, 120px) clamp(64px, 7vw, 96px) minmax(0, 1fr) minmax(0, .9fr) clamp(122px, 13vw, 170px);
  align-items: center; border-bottom: 1px solid rgba(20,20,20,.24);
  color: var(--bk); transition: background .35s ease, color .35s ease;
}
/* poster thumb: always visible, always in colour; grows gently on hover */
.br-event__thumb { padding: clamp(8px, 1vw, 12px) 0; line-height: 0; }
.br-event__thumb img {
  width: clamp(48px, 5vw, 72px); height: clamp(48px, 5vw, 72px);
  object-fit: cover; object-position: center 20%; display: block;
  border: 2px solid var(--bk);
  transition: width .55s cubic-bezier(.25, .46, .45, .94), height .55s cubic-bezier(.25, .46, .45, .94), border-color .35s ease;
}
.br-event:hover .br-event__thumb img, .br-event.is-active .br-event__thumb img {
  width: clamp(110px, 12vw, 150px); height: clamp(110px, 12vw, 150px);
  border-color: var(--br-cream);
}
.br-page .br-event { color: var(--bk); }        /* beat the .brutal a color */
.br-event:hover { background: var(--bk); color: var(--br-cream); }
.br-event > span { padding: clamp(11px, 1.5vw, 20px) 12px; }
.br-event__date {
  font-family: Archivo, sans-serif; font-weight: 900;
  font-variation-settings: 'wdth' 62, 'wght' 900;
  font-size: clamp(17px, 2vw, 30px); line-height: .94; letter-spacing: -.02em; text-transform: uppercase;
}
.br-event__name {
  font-family: Archivo, sans-serif; font-weight: 800;
  font-variation-settings: 'wdth' 88, 'wght' 800;
  font-size: clamp(17px, 2.6vw, 40px); line-height: .98; letter-spacing: -.025em;
  text-transform: uppercase; transition: font-variation-settings .4s ease;
}
.br-event:hover .br-event__name { font-variation-settings: 'wdth' 125, 'wght' 900; }
.br-event__city { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-size: clamp(14px, 1.6vw, 23px); line-height: 1.12; }
.br-event__status { font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.br-event__status span { display: inline-block; background: var(--br-red); color: var(--br-cream); padding: 4px 7px; }
.br-events__empty { margin: 0; padding: clamp(20px, 3vw, 40px) 12px; font-size: clamp(16px, 2vw, 26px); }

/* ---- 04/05 format ---- */
.br-formats { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.br-format {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  min-height: clamp(280px, 44vh, 460px); padding: clamp(18px, 2.6vw, 38px);
}
.br-format--green { background: var(--br-green); }
.br-format--cream { background: var(--br-cream); color: var(--bk); }
.br-format__watermark {
  position: absolute; right: -9%; top: -24%; height: 120%; opacity: .14; pointer-events: none;
}
.br-format__num { position: relative; opacity: .75; }
.br-format--cream .br-format__num { color: var(--br-green); opacity: 1; }
.br-format__title {
  position: relative; margin: 0; font-family: Archivo, sans-serif; font-weight: 900;
  font-variation-settings: 'wdth' 108, 'wght' 900;
  font-size: clamp(30px, 4.4vw, 64px); line-height: .88; letter-spacing: -.035em; text-transform: uppercase;
}
.br-format__title .hl-red { color: var(--br-cream); background: var(--br-red); padding: 0 .1em; }
.br-format__title .hl-ink { color: var(--br-cream); background: var(--bk); padding: 0 .1em; }
.br-format__desc { position: relative; margin: 0; font-size: clamp(17px, 1.9vw, 26px); line-height: 1.12; max-width: 30ch; }

/* ---- newsletter band (before the team) ---- */
.br-newsblock {
  position: relative; overflow: hidden; flex: 1; min-width: 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: clamp(18px, 3vw, 40px); padding: clamp(26px, 4vw, 64px) clamp(18px, 3vw, 48px);
}
.br-newsblock__watermark {
  position: absolute; right: -6%; top: -30%; height: 150%; opacity: .12; pointer-events: none;
}
.br-newsblock__text { position: relative; display: flex; flex-direction: column; gap: 10px; }
.br-newsblock__claim { margin: 0; font-size: clamp(28px, 4vw, 60px); line-height: 1.02; max-width: 22ch; }
.br-newsblock__sub { margin: 0; font-size: 13px; letter-spacing: .04em; opacity: .8; }
.br-newsblock .br-cta { position: relative; font-size: 13px; padding: 16px 22px; }

/* ---- sticky newsletter envelope ---- */
.br-sticky-news {
  position: fixed; left: 14px; bottom: 14px; z-index: 50;
  display: flex; align-items: center; gap: 0;
  background: var(--br-red); color: var(--br-cream);
  border: 2px solid var(--br-cream); padding: 11px;
  box-shadow: 4px 4px 0 rgba(20, 20, 20, .55);
  opacity: 0; transform: translateY(72px) rotate(-3deg); pointer-events: none;
  transition: opacity .3s, transform .3s cubic-bezier(.22, 1, .36, 1), background .16s;
}
.br-page .br-sticky-news, .br-page .br-sticky-news:hover { color: var(--br-cream); }
.br-sticky-news.is-shown { opacity: 1; transform: translateY(0) rotate(-3deg); pointer-events: auto; }
.br-sticky-news:hover { background: var(--br-green); transform: translateY(0) rotate(0deg); }
.br-sticky-news svg { width: 20px; height: 20px; display: block; }
.br-sticky-news__label {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  transition: max-width .3s cubic-bezier(.22, 1, .36, 1), margin-left .3s;
}
.br-sticky-news:hover .br-sticky-news__label, .br-sticky-news:focus .br-sticky-news__label {
  max-width: 140px; margin-left: 9px;
}

/* ---- 06 link + newsletter ---- */
.br-links-wrap {
  flex: 1; min-width: 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 4vw, 60px); padding: clamp(22px, 3.4vw, 52px);
}
.br-section--red { background: var(--br-red); }
.br-news { display: flex; flex-direction: column; gap: 18px; }
.br-news__claim { margin: 0; font-size: clamp(28px, 3.6vw, 54px); line-height: 1.02; }
.br-news__ctas { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.br-cta {
  display: inline-block; background: var(--br-cream); color: var(--br-red);
  border: 2px solid var(--br-cream); padding: 13px 18px;
  font-family: Archivo, sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  transition: background .16s, color .16s;
}
.br-page .br-cta { color: var(--br-red); }
.br-cta:hover { background: var(--bk); border-color: var(--bk); color: var(--br-cream); }
.br-cta--ghost { background: transparent; color: var(--br-cream); }
.br-page .br-cta--ghost { color: var(--br-cream); }
.br-cta--ghost:hover { background: var(--br-cream); border-color: var(--br-cream); color: var(--br-red); }
.br-links { display: flex; flex-direction: column; }
.br-link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 0; border-top: 1px solid rgba(245,241,230,.35);
  color: var(--br-cream); font-size: clamp(13px, 1.5vw, 20px); font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  font-variation-settings: 'wdth' 95, 'wght' 800;
  transition: font-variation-settings .35s ease, padding-left .35s ease;
}
.br-page .br-link, .br-page .br-link:hover { color: var(--br-cream); }
.br-link:hover { font-variation-settings: 'wdth' 125, 'wght' 900; padding-left: 10px; }
.br-link > span:first-child { display: flex; align-items: center; gap: 11px; }
.br-link img { height: 16px; flex: none; }
.br-link__arrow { font-size: 11px; opacity: .7; }

/* ---- footer ---- */
.br-footer {
  position: relative; overflow: hidden; background: var(--bk);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  min-height: clamp(220px, 34vh, 340px); padding: clamp(18px, 2.6vw, 38px);
}
.br-footer__pattern {
  position: absolute; inset: -12%;
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px;
  opacity: .1; transform: rotate(-12deg); pointer-events: none;
}
.br-footer__pattern img { width: 100%; display: block; }
.br-footer__id { position: relative; display: flex; flex-direction: column; gap: 12px; }
.br-footer__id img { height: clamp(34px, 4.6vw, 58px); align-self: flex-start; }
.br-footer__mail {
  font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--br-cream); border-bottom: 2px solid var(--br-red); align-self: flex-start; padding-bottom: 3px;
}
.br-page .br-footer__mail { color: var(--br-cream); }
.br-page .br-footer__mail:hover { color: var(--br-red); }
.br-footer__meta { position: relative; display: flex; align-items: flex-end; gap: 22px; flex-wrap: wrap; }
.br-footer__legal { display: flex; flex-direction: column; gap: 10px; max-width: 44ch; }
.br-footer__legal-title {
  font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--br-cream); border-bottom: 2px solid var(--br-red);
  align-self: flex-start; padding-bottom: 3px;
}
.br-footer__legal-id { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; line-height: 1.8; opacity: .55; }
.br-footer__legal-id a { color: var(--br-cream); }
.br-page .br-footer__legal-id a { color: var(--br-cream); }
.br-page .br-footer__legal-id a:hover { color: var(--br-red); }
.br-footer__nocookies { font-size: 13px; line-height: 1.5; opacity: .45; }
.br-totop {
  border: 2px solid var(--br-cream); background: transparent; color: var(--br-cream);
  padding: 11px 15px; font-family: Archivo, sans-serif; font-size: 10px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; cursor: pointer;
  transition: background .16s, border-color .16s;
}
.br-totop:hover { background: var(--br-green); border-color: var(--br-green); }

/* =========================================================
   Press kit page
   ========================================================= */
.pk-hero { min-height: 72vh; height: auto; }
.pk-hero .br-hero__main { gap: 26px; }
.pk-hero__mail {
  font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bk); border-bottom: 2px solid var(--br-red); padding-bottom: 3px;
}
.br-page .pk-hero__mail { color: var(--bk); }
.br-page .pk-hero__mail:hover { color: var(--br-red); }

.pk-body {
  flex: 1; min-width: 0;
  padding: clamp(26px, 4vw, 64px) clamp(18px, 3vw, 48px);
  display: flex; flex-direction: column; gap: 28px;
}
.pk-body--flush { padding: 0; gap: 0; }
.pk-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.pk-body--flush .pk-head { padding: clamp(26px, 4vw, 64px) clamp(18px, 3vw, 48px) 26px; }
.pk-title {
  margin: 0; font-family: Archivo, sans-serif; font-weight: 900;
  font-variation-settings: 'wdth' 110, 'wght' 900;
  font-size: clamp(30px, 4.6vw, 64px); line-height: .9; letter-spacing: -.03em; text-transform: uppercase;
}
.pk-note { margin: 0; font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-size: 15px; line-height: 1.4; max-width: 46ch; opacity: .75; }
.pk-note a { color: var(--br-red); }

/* logos grid */
.pk-logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2px; }
.pk-logo { display: flex; flex-direction: column; border: 2px solid rgba(245,241,230,.18); }
.pk-logo__plate {
  height: 170px; display: flex; align-items: center; justify-content: center;
  padding: 22px; box-sizing: border-box;
}
.pk-logo__plate img { max-width: 78%; max-height: 70%; }
.pk-logo__info { display: flex; flex-direction: column; gap: 8px; padding: 14px; border-top: 2px solid rgba(245,241,230,.18); }
.pk-logo__name {
  font-family: Archivo, sans-serif; font-weight: 900;
  font-variation-settings: 'wdth' 80, 'wght' 900;
  font-size: 15px; text-transform: uppercase; letter-spacing: .02em;
}
.pk-logo__desc { font-size: 11px; line-height: 1.5; opacity: .6; }
.pk-logo__desc em { font-family: 'Instrument Serif', Georgia, serif; font-size: 12px; }
.pk-dl {
  align-self: flex-start; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  border: 2px solid var(--br-red); color: var(--br-cream); padding: 8px 12px; transition: background .16s;
}
.br-page .pk-dl { color: var(--br-cream); }
.pk-dl:hover { background: var(--br-red); }

/* rules */
.pk-rules { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 2px; }
.pk-rulebox { padding: clamp(18px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 14px; }
.pk-rulebox--do   { border: 2px solid var(--br-green); }
.pk-rulebox--dont { border: 2px solid var(--br-red); }
.pk-rulebox__title {
  font-family: Archivo, sans-serif; font-weight: 900;
  font-variation-settings: 'wdth' 100, 'wght' 900;
  font-size: clamp(22px, 2.6vw, 34px); text-transform: uppercase;
}
.pk-rulebox--do .pk-rulebox__title { color: var(--br-green); }
.pk-rulebox--dont .pk-rulebox__title { color: var(--br-red); }
.pk-rule { display: flex; gap: 12px; align-items: baseline; padding-top: 12px; }
.pk-rulebox--do .pk-rule { border-top: 1px solid rgba(47,102,32,.3); }
.pk-rulebox--dont .pk-rule { border-top: 1px solid rgba(202,52,51,.3); }
.pk-rule__mark { flex: none; font-weight: 900; }
.pk-rulebox--do .pk-rule__mark { color: var(--br-green); }
.pk-rulebox--dont .pk-rule__mark { color: var(--br-red); }
.pk-rule__text { font-size: 13px; line-height: 1.6; }
.pk-rule__text em { font-family: 'Instrument Serif', Georgia, serif; opacity: .55; }

/* colors */
.pk-swatches { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.pk-swatch {
  appearance: none; border: none; cursor: pointer;
  height: clamp(180px, 26vh, 260px);
  display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;
  padding: 16px; text-align: left; font-family: Archivo, sans-serif;
  transition: transform .16s;
}
.pk-swatch:hover { transform: translateY(-4px); }
.pk-swatch__name { font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; opacity: .85; }
.pk-swatch__name em { font-family: 'Instrument Serif', Georgia, serif; font-size: 12px; text-transform: none; letter-spacing: 0; }
.pk-swatch__hex {
  font-family: Archivo, sans-serif; font-weight: 900;
  font-variation-settings: 'wdth' 80, 'wght' 900;
  font-size: clamp(17px, 1.8vw, 24px); letter-spacing: -.01em;
}

/* typefaces */
.pk-face {
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 18px; align-items: center;
  border-top: 2px solid var(--bk); padding: clamp(16px, 2.2vw, 28px) 0;
  color: var(--bk); transition: background .16s, color .16s;
}
.br-page .pk-face { color: var(--bk); }
.pk-face:hover { background: var(--bk); color: var(--br-cream); }
.pk-face__sample { font-size: clamp(24px, 3.8vw, 54px); line-height: 1.1; min-width: 0; overflow-wrap: break-word; }
.pk-face__sample--dela { font-family: 'Dela Gothic One', sans-serif; }
.pk-face__sample--quick { font-family: Quicksand, sans-serif; font-weight: 700; }
.pk-face__sample--roboto { font-family: Roboto, sans-serif; }
.pk-face__meta { display: flex; flex-direction: column; gap: 6px; }
.pk-face__name {
  font-family: Archivo, sans-serif; font-weight: 900;
  font-variation-settings: 'wdth' 80, 'wght' 900;
  font-size: 17px; text-transform: uppercase;
}
.pk-face__role { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .6; }
.pk-face__cta { font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--br-red); }

/* artists */
.pk-artist {
  display: grid; grid-template-columns: clamp(140px, 18vw, 260px) minmax(0, 1fr);
  border-top: 2px solid rgba(245,241,230,.18);
}
.pk-artist__photo {
  position: relative; min-height: 230px; background-color: var(--br-cream);
  background-size: cover; background-position: center 24%;
  filter: grayscale(100%) contrast(1.25) brightness(.85);
  transition: filter .35s ease-out; border-right: 2px solid rgba(245,241,230,.18);
}
.pk-artist:hover .pk-artist__photo { filter: grayscale(0) contrast(1) brightness(1); }
.pk-artist__num {
  position: absolute; left: 10px; top: 10px;
  font-size: 10px; font-weight: 800; letter-spacing: .2em; background: var(--bk); padding: 4px 7px;
}
.pk-artist__body { display: flex; flex-direction: column; gap: 12px; padding: clamp(16px, 2.4vw, 30px) clamp(16px, 2.4vw, 34px); }
.pk-artist__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pk-artist__name {
  font-family: Archivo, sans-serif; font-weight: 900;
  font-variation-settings: 'wdth' 100, 'wght' 900;
  font-size: clamp(26px, 3.4vw, 46px); line-height: .9; letter-spacing: -.02em; text-transform: uppercase;
}
.pk-artist__ig { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--br-red); }
.pk-artist__quote { margin: 0; font-size: clamp(16px, 1.7vw, 21px); line-height: 1.25; color: var(--br-cream); }
.pk-artist__bio { margin: 0; font-size: 13px; line-height: 1.7; opacity: .72; }
.pk-artist__bio-en { margin: 0; font-family: 'Instrument Serif', Georgia, serif; font-size: 13px; line-height: 1.6; opacity: .5; font-style: italic; }
.pk-artist .pk-dl { margin-top: 4px; padding: 9px 13px; }

/* press kit footer */
.pk-footer {
  position: relative; background: var(--bk); border-top: 2px solid rgba(245,241,230,.18);
  padding: clamp(24px, 3.4vw, 48px) clamp(18px, 3vw, 48px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  min-height: 0; overflow: visible;
}
.pk-footer .br-footer__id img { height: clamp(30px, 4vw, 48px); }
.pk-footer__legal { text-align: right; }

/* copy toast */
.pk-toast {
  position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 60;
  background: var(--br-green); color: var(--br-cream);
  font-family: Archivo, sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; padding: 11px 18px;
  pointer-events: none; opacity: 0; transition: opacity .25s;
}
.pk-toast.is-on { opacity: 1; }

/* =========================================================
   Tactile brutalism — depth layer

   Hard offset shadows make plaques of the interactive bits,
   :active presses them into the page, stickers sit slightly
   rotated, cream surfaces get paper grain, and the big Makki
   watermarks drift on scroll (--plx set by brutal-home.js,
   skipped under prefers-reduced-motion).
   ========================================================= */

/* paper grain on the big colour surfaces */
.br-grain { position: relative; }
.br-grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* plaque buttons: raised, then physically pressed in */
.br-cta, .br-totop, .pk-dl {
  box-shadow: 5px 5px 0 rgba(20, 20, 20, .9);
  transition: background .25s ease, color .25s ease, border-color .25s ease,
              transform .18s ease, box-shadow .18s ease;
}
.br-cta:hover, .br-totop:hover, .pk-dl:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(20, 20, 20, .9);
}
.br-cta:active, .br-totop:active, .pk-dl:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 rgba(20, 20, 20, .9);
}

/* the Biglietti chip is a slapped-on sticker */
.br-event__status span {
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 rgba(20, 20, 20, .85);
  transition: box-shadow .35s ease;
}
.br-event:hover .br-event__status span, .br-event.is-active .br-event__status span {
  box-shadow: 3px 3px 0 rgba(245, 241, 230, .55);
}

/* event posters sit proud of the row */
.br-event__thumb img { box-shadow: 4px 4px 0 rgba(20, 20, 20, .85); }
.br-event:hover .br-event__thumb img, .br-event.is-active .br-event__thumb img {
  box-shadow: 6px 6px 0 rgba(245, 241, 230, .55);
}

/* press-kit: swatches lift with a real shadow, rule boxes are cards */
.pk-swatch:hover { box-shadow: 6px 6px 0 rgba(20, 20, 20, .55); }
.pk-rulebox--do   { box-shadow: 6px 6px 0 rgba(47, 102, 32, .3); }
.pk-rulebox--dont { box-shadow: 6px 6px 0 rgba(202, 52, 51, .3); }

/* floating 3D objects (Higgsfield renders) — draggable toys that also
   drift on the same --plx parallax as the watermarks. --dx/--dy are
   the drag offsets set by brutal-home.js; --cx/--cy center an object
   on its anchor point. */
.br-object {
  position: absolute; z-index: 1;
  cursor: grab; touch-action: none; user-select: none; -webkit-user-drag: none;
  transform: translate(calc(var(--cx, 0%) + var(--dx, 0px)), calc(var(--cy, 0%) + var(--dy, 0px)))
             rotate(var(--rot, 0deg)) translateY(var(--plx, 0px));
  filter: drop-shadow(10px 12px 0 rgba(20, 20, 20, .16));
}
.br-object.is-dragging { cursor: grabbing; z-index: 30; }

/* entrance: each toy waits above the page and drops in with a bounce
   the first time its section scrolls into view (brutal-home.js adds
   .is-falling; .is-landed is the no-motion/no-observer fallback).
   The fall uses the standalone `translate` property so it composes
   with the drag/parallax `transform` instead of fighting it. */
.br-object { translate: 0 -120vh; }
.br-object.is-falling { animation: brFall 1.2s both; translate: 0 0; }
.br-object.is-landed { translate: 0 0; }
@keyframes brFall {
  0%   { translate: 0 -120vh; animation-timing-function: cubic-bezier(.55, 0, .85, .36); }
  46%  { translate: 0 0;      animation-timing-function: cubic-bezier(.16, .84, .44, 1); }
  63%  { translate: 0 -26%;   animation-timing-function: cubic-bezier(.55, 0, .85, .36); }
  76%  { translate: 0 0;      animation-timing-function: cubic-bezier(.16, .84, .44, 1); }
  86%  { translate: 0 -10%;   animation-timing-function: cubic-bezier(.55, 0, .85, .36); }
  93%  { translate: 0 0;      animation-timing-function: cubic-bezier(.16, .84, .44, 1); }
  97%  { translate: 0 -3%;    animation-timing-function: cubic-bezier(.55, 0, .85, .36); }
  100% { translate: 0 0; }
}
.br-object--makki {
  --rot: 8deg; z-index: 2;
  width: clamp(100px, 14vw, 220px);
  left: 55%; top: 57%;   /* below the big title, above the claim row */
}
.br-object--tomato {
  --rot: -12deg; --cx: -50%; --cy: -50%;
  width: clamp(130px, 17vw, 250px);
  left: 50%; top: 50%;
}
.br-object--rucola {
  --rot: 14deg;
  width: clamp(110px, 14vw, 210px);
  right: 3%; top: 4%;
}

/* watermarks drift on scroll */
.br-format__watermark { transform: translateY(var(--plx, 0px)); }
.br-newsblock__watermark { transform: translateY(var(--plx, 0px)); }
.br-footer__pattern { transform: rotate(-12deg) translateY(var(--plx, 0px)); }

/* =========================================================
   Small screens
   ========================================================= */
@media (max-width: 760px) {
  .br-hero { flex-direction: column; height: auto; min-height: 100vh; }
  .br-hero__rail {
    width: 100%; order: 3; padding: 12px 0; align-items: center; justify-content: center;
  }
  .br-hero__rail-pattern { flex-direction: row; justify-content: center; padding: 0 12px; gap: 16px; }
  .br-hero__rail-pattern img { width: auto; height: 70%; }
  .br-hero__rail .br-vtext { writing-mode: horizontal-tb; }
  .br-hero__main { min-height: 72vh; gap: 22px; }
  .br-ticker { display: none; }
  .pk-hero { min-height: 0; }
  .pk-hero .br-hero__main { min-height: 0; }

  .br-section { flex-direction: column; }
  .br-spine { writing-mode: horizontal-tb; padding: 10px 16px; }

  .br-team { flex-direction: column; height: auto; }
  .br-perf { flex: none; height: 300px; border-right: none; border-bottom: 2px solid var(--bk); }
  .br-perf:hover, .br-perf:focus-within, .br-perf.is-active { flex: none; }
  .br-perf__name {
    left: 16px; right: auto; top: auto; bottom: 52px; transform: none;
    writing-mode: horizontal-tb; font-size: 34px;
  }
  /* on tap/hover the bio appears at the bottom, so the name slides up
     out of its way */
  .br-perf:hover .br-perf__name, .br-perf:focus-within .br-perf__name, .br-perf.is-active .br-perf__name {
    left: 16px; bottom: calc(100% - 76px);
  }
  .br-perf__quote { left: 16px; right: 16px; }
  .br-perf__bio { left: 16px; right: 16px; }

  /* keep the toys clear of the text on small screens */
  .br-object--makki { width: 88px; left: auto; right: 12px; top: 30%; }
  .br-object--tomato { --cx: 0%; --cy: 0%; left: auto; top: auto; right: 10px; bottom: -24px; width: 104px; }
  .br-object--rucola { width: 92px; right: 8px; top: -4%; }

  .br-event { grid-template-columns: 96px clamp(64px, 18vw, 90px) minmax(0, 1fr); }
  .br-event__thumb { grid-row: 1 / span 3; grid-column: 1; align-self: start; }
  /* fixed size on mobile — the desktop hover-grow would overflow the
     column and slide under the text */
  .br-event__thumb img,
  .br-event:hover .br-event__thumb img,
  .br-event.is-active .br-event__thumb img { width: 76px; height: 76px; border-color: var(--bk); }
  .br-event.is-active .br-event__thumb img { border-color: var(--br-cream); }
  .br-event__date { grid-column: 2; }
  .br-event__name { grid-column: 3; }
  .br-event__city { grid-column: 2 / -1; padding-top: 0; }
  .br-event__status { grid-column: 2 / -1; padding-top: 0; }

  .pk-face { grid-template-columns: minmax(0, 1fr); }
  .pk-artist { grid-template-columns: minmax(0, 1fr); }
  .pk-artist__photo { min-height: 260px; border-right: none; border-bottom: 2px solid rgba(245,241,230,.18); }
}
