@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #070707;
  --paper: #f5f1e8;
  --muted: #b7b0a4;
  --line: rgba(255, 255, 255, 0.15);
  --gold: #f2bd54;
  --gold-soft: #ffe6a6;
  --red: #e6382f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: #fff; color: #000; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1380px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1rem 0;
}
.brand img { width: 172px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 2rem; font-weight: 600; font-size: .9rem; }
.site-nav a:not(.nav-cta) { color: rgba(255,255,255,.82); }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold); }
.nav-cta { border: 1px solid rgba(255,255,255,.45); padding: .72rem 1.1rem; border-radius: 999px; }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--line); color: #fff; border-radius: 999px; padding: .6rem 1rem; }

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 7rem);
  width: min(1380px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 9rem 0 5rem;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0 -20vw;
  background: radial-gradient(circle at 85% 34%, rgba(230,56,47,.23), transparent 35%), linear-gradient(115deg, #050505 42%, #160806 100%);
}
.hero-glow { position: absolute; width: 24rem; height: 24rem; left: -18rem; top: 24rem; background: rgba(242,189,84,.12); filter: blur(80px); }
.eyebrow, .section-kicker { margin: 0 0 1.25rem; color: var(--gold); text-transform: uppercase; letter-spacing: .2em; font-size: .76rem; font-weight: 700; }
h1, h2, h3 { font-family: "Archivo Black", Impact, sans-serif; letter-spacing: -.035em; line-height: .98; margin: 0; }
h1 { font-size: clamp(3.7rem, 7.3vw, 7.5rem); text-transform: uppercase; max-width: 780px; }
h1 span { color: var(--gold-soft); }
.hero-lede { max-width: 700px; font-size: clamp(1.1rem, 1.65vw, 1.4rem); color: rgba(255,255,255,.77); margin: 2rem 0 2.5rem; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border-radius: 999px; padding: .82rem 1.3rem; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #090909; background: var(--gold); }
.button-primary:hover { background: var(--gold-soft); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.04); }

.hero-visual { position: relative; min-height: 690px; }
.poster { position: absolute; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 35px 80px rgba(0,0,0,.7); }
.poster img { width: 100%; height: 100%; object-fit: contain; background: #050505; }
.poster-front { width: min(62%, 390px); height: 520px; right: 8%; top: 9%; transform: rotate(4deg); z-index: 2; }
.poster-back { width: min(56%, 350px); height: 455px; left: 3%; top: 27%; transform: rotate(-8deg); opacity: .72; }
.since-card { position: absolute; z-index: 3; right: 0; bottom: 7%; width: 165px; height: 165px; border-radius: 50%; background: var(--red); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transform: rotate(8deg); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.since-card strong { font-family: "Archivo Black"; font-size: 1.7rem; }
.since-card span { text-transform: uppercase; font-weight: 700; letter-spacing: .08em; line-height: 1.25; }

.proof-band { border-block: 1px solid var(--line); padding: 1.2rem max(1.5rem, calc((100vw - 1380px)/2)); display: flex; gap: 1.4rem; align-items: center; justify-content: space-between; white-space: nowrap; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; font-size: .78rem; overflow: hidden; }
.proof-band i { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex: 0 0 auto; }

.section { width: min(1220px, calc(100% - 3rem)); margin: 0 auto; padding: 8rem 0; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 7rem; align-items: start; }
h2 { font-size: clamp(2.8rem, 5.6vw, 5.7rem); }
.about-copy { color: rgba(255,255,255,.74); font-size: 1.15rem; max-width: 580px; }
.about-copy p:first-child { color: #fff; font-size: 1.35rem; margin-top: 0; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 5rem; border-block: 1px solid var(--line); }
.facts article { padding: 2rem; border-right: 1px solid var(--line); }
.facts article:last-child { border-right: 0; }
.facts strong { display: block; color: var(--gold); font-family: "Archivo Black"; font-size: clamp(1.7rem, 3vw, 2.8rem); text-transform: uppercase; }
.facts span { color: var(--muted); }

.events { border-top: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 3rem; }
.section-heading h2 { font-size: clamp(2.6rem, 5vw, 4.7rem); }
.section-heading > a { color: var(--gold); font-weight: 700; }
.section-heading > p { color: var(--muted); max-width: 430px; margin: 0; }
.featured-events { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.event-card { position: relative; min-height: 690px; overflow: hidden; background: #111; }
.event-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.97)); }
.event-card img { width: 100%; height: 100%; object-fit: contain; background: #050505; transition: transform .55s ease; }
.event-card:hover img { transform: scale(1.025); }
.event-copy { position: absolute; z-index: 2; inset: auto 2rem 2rem; }
.event-copy p { color: var(--gold); text-transform: uppercase; font-weight: 700; font-size: .8rem; letter-spacing: .08em; }
.event-copy h3 { font-size: clamp(2.6rem, 5vw, 5rem); text-transform: uppercase; }
.event-copy span { color: rgba(255,255,255,.72); }
.event-ticket { width: fit-content; margin-top: 1.15rem; text-transform: uppercase; letter-spacing: .06em; }

.tour-story { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 7vw, 8rem); align-items: center; border-top: 1px solid var(--line); }
.tour-story::before { content: "02"; position: absolute; right: 0; top: 2rem; font-family: "Archivo Black"; font-size: clamp(9rem, 22vw, 20rem); line-height: 1; color: rgba(255,255,255,.025); pointer-events: none; }
.tour-intro { position: relative; z-index: 2; }
.tour-intro h2 { font-size: clamp(3rem, 5.5vw, 5.5rem); }
.tour-intro h2 span { color: var(--gold-soft); }
.tour-intro > p:not(.section-kicker) { color: rgba(255,255,255,.72); font-size: 1.08rem; }
.tour-intro > p:nth-of-type(2) { margin-top: 2rem; }
.role-note { margin-top: 2.3rem; padding: 1.3rem 0 0 1.3rem; border-top: 1px solid var(--line); border-left: 3px solid var(--red); display: flex; flex-direction: column; gap: .45rem; }
.role-note strong { color: #fff; }
.role-note span { color: var(--muted); font-size: .92rem; }
.tour-flyers { position: relative; min-height: 760px; }
.tour-flyer { position: absolute; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.18); background: #111; box-shadow: 0 30px 80px rgba(0,0,0,.62); }
.tour-flyer img { width: 100%; height: 100%; object-fit: contain; background: #050505; }
.tour-flyer.montreal { width: 49%; height: 690px; left: 0; top: 0; transform: rotate(-3deg); }
.tour-flyer.toronto { width: 52%; height: 650px; right: 0; top: 80px; transform: rotate(3deg); }
.tour-flyer figcaption { position: absolute; inset: auto 0 0; padding: 2.5rem 1.2rem 1.2rem; display: flex; justify-content: space-between; gap: 1rem; align-items: end; background: linear-gradient(transparent, rgba(0,0,0,.96)); }
.tour-flyer figcaption strong { font-family: "Archivo Black"; font-size: 1.45rem; text-transform: uppercase; }
.tour-flyer figcaption span { color: rgba(255,255,255,.75); font-size: .82rem; text-align: right; }

.legacy { width: min(1380px, calc(100% - 3rem)); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 90px; gap: 1rem; }
.gallery-card { position: relative; margin: 0; overflow: hidden; grid-column: span 4; grid-row: span 6; background: #111; }
.gallery-card.tall { grid-row: span 7; }
.gallery-card.wide { grid-column: span 8; grid-row: span 6; }
.gallery-card img { width: 100%; height: 100%; object-fit: contain; background: #050505; transition: transform .55s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.9)); }
.gallery-card figcaption { position: absolute; z-index: 2; inset: auto 1.4rem 1.3rem; display: flex; flex-direction: column; }
.gallery-card figcaption strong { font-family: "Archivo Black"; font-size: 1.4rem; text-transform: uppercase; }
.gallery-card figcaption span { color: rgba(255,255,255,.7); }

.series { border-top: 1px solid var(--line); }
.series-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 3.5rem; border-top: 1px solid var(--line); }
.series-grid article { min-height: 280px; padding: 2rem 2rem 2rem 0; margin-right: 2rem; border-right: 1px solid var(--line); }
.series-grid article:last-child { border-right: 0; }
.series-grid span { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.series-grid h3 { font-size: 2rem; margin: 1.4rem 0; }
.series-grid p { color: var(--muted); }

.contact { position: relative; width: min(1220px, calc(100% - 3rem)); margin: 2rem auto 7rem; overflow: hidden; padding: clamp(3rem, 8vw, 7rem); text-align: center; background: var(--paper); color: #090909; }
.contact::before { content: "PAPELETA"; position: absolute; inset: auto 0 -3vw; font-family: "Archivo Black"; font-size: clamp(6rem, 16vw, 14rem); color: rgba(0,0,0,.035); white-space: nowrap; pointer-events: none; }
.contact .section-kicker { color: #9b5f00; }
.contact h2 { font-size: clamp(3rem, 6vw, 5.7rem); }
.contact p:not(.section-kicker) { max-width: 650px; margin: 1.7rem auto 2rem; color: #5d574e; font-size: 1.1rem; }
.contact .button-primary { background: #0a0a0a; color: #fff; position: relative; }

footer { border-top: 1px solid var(--line); width: min(1380px, calc(100% - 3rem)); margin: 0 auto; padding: 2rem 0; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 2rem; color: var(--muted); font-size: .86rem; }
footer img { width: 140px; height: auto; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 5.7rem; right: 0; flex-direction: column; align-items: stretch; min-width: 230px; padding: 1.2rem; background: #111; border: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 10rem; }
  .hero-visual { min-height: 620px; max-width: 650px; width: 100%; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tour-story { grid-template-columns: 1fr; }
  .tour-intro { max-width: 720px; }
  .tour-flyers { max-width: 760px; width: 100%; margin: 0 auto; }
  .gallery-card { grid-column: span 6; }
  .gallery-card.wide { grid-column: span 6; }
  .series-grid { grid-template-columns: 1fr; }
  .series-grid article { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header, .hero, .section, .legacy, .contact, footer { width: min(100% - 2rem, 1380px); }
  .brand img { width: 138px; }
  .hero { min-height: auto; padding-top: 8rem; gap: 1rem; }
  h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-visual { min-height: 500px; }
  .poster-front { width: 63%; height: 390px; right: 2%; }
  .poster-back { width: 58%; height: 350px; left: 0; }
  .since-card { width: 116px; height: 116px; bottom: 3%; }
  .since-card strong { font-size: 1.2rem; }
  .since-card span { font-size: .78rem; }
  .proof-band { justify-content: flex-start; overflow-x: auto; }
  .section { padding: 5.5rem 0; }
  .facts { grid-template-columns: 1fr; }
  .facts article { border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .featured-events { grid-template-columns: 1fr; }
  .event-card { min-height: 610px; }
  .tour-flyers { min-height: 560px; }
  .tour-flyer.montreal { width: 53%; height: 500px; }
  .tour-flyer.toronto { width: 55%; height: 465px; top: 60px; }
  .tour-flyer figcaption { padding-inline: .8rem; flex-direction: column; align-items: start; }
  .tour-flyer figcaption strong { font-size: 1rem; }
  .tour-flyer figcaption span { text-align: left; font-size: .72rem; }
  .gallery { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .gallery-card, .gallery-card.tall, .gallery-card.wide { grid-column: span 1; grid-row: auto; aspect-ratio: 4/5; }
  .gallery-card.wide { grid-column: span 2; aspect-ratio: 1/1; }
  .gallery-card figcaption { inset: auto .9rem .9rem; }
  .gallery-card figcaption strong { font-size: 1rem; }
  .gallery-card figcaption span { font-size: .78rem; }
  .contact { padding: 4rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .poster, .event-card img, .gallery-card img, .button { transition: none; }
}
