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

:root {
  --bg: #0d0b0b;
  --panel: #171313;
  --soft: #221c1b;
  --paper: #f2eadf;
  --ink: #111;
  --muted: #bdaea0;
  --accent: #8f2f2a;
  --accent-2: #b58a52;
  --line: rgba(242, 234, 223, 0.16);
  --white-line: rgba(255,255,255,0.1);
  --max: 1340px;
  --rail: 120px;
  --radius: 26px;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.25;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  min-height: 100vh;
}

.side-rail {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 18px;
  border-right: 1px solid var(--line);
  background: rgba(8, 7, 7, 0.82);
  backdrop-filter: blur(14px);
  z-index: 5;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.brand-tag {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--muted);
}

.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 0.92;
  text-align: center;
}

.rail-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.rail-nav a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.rail-nav a:hover,
.rail-nav a.active {
  color: var(--paper);
  transform: rotate(180deg) translateY(-4px);
}

.rail-foot {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.rail-chip {
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 12px 10px;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: rgba(255,255,255,0.02);
}

main {
  padding: 26px;
}

.page {
  max-width: var(--max);
  margin: 0 auto;
}

.mobile-topbar {
  display: none;
}

.poster-hero {
  min-height: calc(100vh - 52px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 360px;
  gap: 28px;
  align-items: stretch;
}

.poster-stage,
.poster-panel,
.paper-block,
.program-card,
.contact-card,
.manifesto-card,
.story-card,
.note-card,
.info-strip,
.agenda-band {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.poster-stage {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #120f0f;
  padding: 54px;
}

.poster-stage::before,
.poster-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  background: rgba(143, 47, 42, 0.18);
  filter: blur(1px);
}

.poster-stage::before {
  left: -4%;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.poster-stage::after {
  right: -4%;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.hero-kicker,
.section-kicker,
.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.74rem;
  color: var(--muted);
}

.hero-title {
  position: relative;
  margin: 28px 0 20px;
  max-width: 760px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-title span {
  display: block;
}

.hero-copy {
  max-width: 700px;
  font-size: 1.05rem;
  color: #e6ddd2;
}

.hero-meta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.meta-block {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.meta-block strong,
.stat-number,
.list-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.poster-panel {
  background: rgba(20, 16, 15, 0.94);
  border-radius: 30px;
  padding: 28px;
  display: grid;
  gap: 22px;
  align-content: start;
}

.ticket-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  border: 1px dashed rgba(242, 234, 223, 0.28);
  padding: 10px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.panel-title,
.section-title,
.page-title,
.card-title,
.timeline-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
  margin: 0;
}

.panel-title {
  font-size: 3rem;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  margin-top: 28px;
}

.paper-block {
  border-radius: 32px;
  background: var(--paper);
  color: var(--ink);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.paper-block::after {
  content: attr(data-stamp);
  position: absolute;
  right: -12px;
  bottom: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.8;
  color: rgba(17,17,17,0.06);
  text-transform: uppercase;
  pointer-events: none;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  color: var(--ink);
}

.paper-block p,
.manifesto-card p,
.story-card p,
.contact-card p,
.program-card p,
.note-card p,
.info-strip p,
.agenda-band p,
.copy-large {
  margin: 0;
}

.note-card,
.story-card,
.manifesto-card,
.program-card,
.contact-card,
.info-strip,
.agenda-band {
  background: rgba(23, 19, 19, 0.95);
  border-radius: 28px;
  padding: 30px;
}

.note-card {
  transform: translateY(44px);
}

.story-card {
  background: #1c1515;
}

.story-list,
.contact-list,
.program-list,
.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.story-list li,
.program-list li,
.contact-list li,
.steps-list li {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.dual-band {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.band-label {
  position: sticky;
  top: 26px;
}

.band-box {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  background: rgba(255,255,255,0.03);
}

.band-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  line-height: 0.95;
  margin: 18px 0 12px;
}

.band-content {
  display: grid;
  gap: 24px;
}

.info-strip {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
}

.list-number {
  color: var(--accent-2);
}

.quote-banner {
  margin: 96px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--accent-2);
}

.quote-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
}

.bottom-cta {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.cta-block {
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 36px;
  background: rgba(255,255,255,0.03);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn {
  background: var(--paper);
  color: var(--ink);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--paper);
}

.btn:hover,
.btn-outline:hover {
  transform: translateY(-3px);
}

.page-hero {
  padding: 38px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: end;
}

.page-title {
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.page-intro {
  max-width: 820px;
  color: #ddd2c6;
  font-size: 1.02rem;
}

.page-aside {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.manifesto-card {
  min-height: 100%;
}

.manifesto-card .section-title,
.story-card .section-title,
.program-card .section-title,
.contact-card .section-title {
  color: var(--paper);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 18px;
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.timeline-year {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  color: var(--accent-2);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.program-card {
  min-height: 100%;
  display: grid;
  gap: 18px;
}

.program-card:nth-child(2) {
  transform: translateY(34px);
}

.program-card:nth-child(3) {
  transform: translateY(68px);
}

.tag {
  display: inline-flex;
  width: max-content;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.agenda-band {
  margin-top: 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.agenda-table {
  display: grid;
  gap: 16px;
}

.agenda-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.agenda-time {
  color: var(--accent-2);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.contact-marquee {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.contact-body {
  padding: 34px;
  display: grid;
  gap: 24px;
}

.contact-big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  margin: 0;
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
}

.footer-note {
  margin-top: 84px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .site-shell {
    grid-template-columns: 1fr;
  }

  .side-rail {
    display: none;
  }

  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 7, 7, 0.84);
    backdrop-filter: blur(14px);
    margin-bottom: 20px;
  }

  .mobile-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 0.9;
  }

  .mobile-nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: var(--muted);
  }

  .poster-hero,
  .section-grid,
  .dual-band,
  .bottom-cta,
  .page-hero,
  .manifesto-layout,
  .program-grid,
  .agenda-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .band-label {
    position: static;
  }

  .program-card:nth-child(2),
  .program-card:nth-child(3),
  .note-card {
    transform: none;
  }

  .page-hero {
    align-items: start;
  }
}

@media (max-width: 720px) {
  main {
    padding: 16px;
  }

  .poster-stage,
  .poster-panel,
  .paper-block,
  .note-card,
  .story-card,
  .manifesto-card,
  .program-card,
  .contact-card,
  .info-strip,
  .agenda-band,
  .cta-block,
  .contact-body {
    padding: 24px;
  }

  .hero-meta,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quote-banner,
  .info-strip,
  .agenda-row,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }

  .page-title,
  .band-title,
  .panel-title,
  .section-title,
  .contact-big {
    line-height: 1;
  }
}
