/* ============================================
   HOMEPAGE-SPECIFIC STYLES
   ============================================ */

/* ---------- Slider (homepage hero) ---------- */
.slider {
  padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px);
  position: relative;
  z-index: 2;
  background:
    radial-gradient(ellipse 75% 60% at 50% 25%, rgba(200, 52, 31, 0.12) 0%, transparent 60%),
    var(--paper);
  overflow: hidden;
}
.slider::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 1600px;
  height: 900px;
  background: conic-gradient(from 0deg at 50% 30%,
    rgba(200, 52, 31, 0) 0deg,    rgba(200, 52, 31, 0.10) 4deg,
    rgba(200, 52, 31, 0) 8deg,    rgba(200, 52, 31, 0) 22deg,
    rgba(200, 52, 31, 0.10) 26deg, rgba(200, 52, 31, 0) 30deg,
    rgba(200, 52, 31, 0) 44deg,    rgba(200, 52, 31, 0.10) 48deg,
    rgba(200, 52, 31, 0) 52deg,    rgba(200, 52, 31, 0) 66deg,
    rgba(200, 52, 31, 0.10) 70deg, rgba(200, 52, 31, 0) 74deg,
    rgba(200, 52, 31, 0) 88deg,    rgba(200, 52, 31, 0.10) 92deg,
    rgba(200, 52, 31, 0) 96deg,    rgba(200, 52, 31, 0) 110deg,
    rgba(200, 52, 31, 0.10) 114deg, rgba(200, 52, 31, 0) 118deg,
    rgba(200, 52, 31, 0) 132deg,    rgba(200, 52, 31, 0.10) 136deg,
    rgba(200, 52, 31, 0) 140deg,    rgba(200, 52, 31, 0) 154deg,
    rgba(200, 52, 31, 0.10) 158deg, rgba(200, 52, 31, 0) 162deg,
    rgba(200, 52, 31, 0) 176deg,    rgba(200, 52, 31, 0.10) 180deg,
    rgba(200, 52, 31, 0) 184deg);
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 0%, transparent 75%);
}
.slider > .container { position: relative; z-index: 1; }

.slider-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.slider-eyebrow .line {
  width: 56px;
  height: 1px;
  background: var(--red);
}
.slider-eyebrow .label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.slider-stage {
  position: relative;
  min-height: 460px;
}
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
/* Active slide flows (relative) so the stage grows to the image height and the
   01/02/03 controls sit BELOW the plate instead of overlapping it. Inactive
   slides stay absolute-stacked on top for the crossfade. */
.slide.active { opacity: 1; pointer-events: auto; position: relative; }

.slide-plate {
  aspect-ratio: 4 / 5;
  background: #14100B;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.slide-plate::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(229, 210, 166, 0.20);
  pointer-events: none;
}
.slide-plate .plate-head {
  border-bottom: 1px solid rgba(229, 210, 166, 0.25);
  padding-bottom: 14px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.slide-plate .plate-head .label { color: var(--red-light); }
.slide-plate .plate-head .ref { color: var(--cream); }
.slide-plate .plate-art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}
.slide-plate .plate-art svg {
  width: 100%;
  height: 100%;
  max-height: 280px;
}
.slide-plate .plate-foot {
  border-top: 1px solid rgba(229, 210, 166, 0.25);
  padding-top: 14px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
}

.slide-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.slide-content .kicker {
  align-self: flex-start;
  font-size: 12px;
}
.slide-content h2 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
}
.slide-content h2 em {
  font-style: italic;
  font-weight: 800;
  color: var(--red);
}
.slide-content .excerpt {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
}
.slide-content .byline {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.slide-content .byline .author { color: var(--ink); font-weight: 700; }
.slide-content .byline .sep { color: var(--red); }
.slide-content .actions { margin-top: 8px; }

.slider-controls { margin-top: 56px; position: relative; }
.slider-progress {
  position: absolute;
  top: 60px;
  left: 0; right: 0;
  height: 1px;
  background: var(--rule);
}
.slider-progress-bar {
  height: 1px;
  width: 0;
  background: var(--red);
}
.slider-nav {
  padding-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 36px;
}
.slider-nav-item {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 28px;
  color: var(--ink-mute);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 8px;
  position: relative;
  transition: color 0.25s ease;
}
.slider-nav-item::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: transparent;
  transition: background 0.25s ease;
}
.slider-nav-item.active { color: var(--red); }
.slider-nav-item.active::after,
.slider-nav-item:hover::after { background: var(--red); }
.slider-nav-spacer { flex: 1; }
.slider-meta {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Institutional Strip ---------- */
.institutional-strip {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 4px solid var(--red);
  background: var(--paper-warm);
  position: relative;
  z-index: 2;
}
.institutional-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 4px;
  border-top: 1px solid var(--red-deep);
}
.institutional-strip .container {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.institutional-strip .left .motto {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.institutional-strip h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.institutional-strip h2 em {
  font-style: italic;
  font-weight: 900;
  color: var(--red);
}
.institutional-strip .lede {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.institutional-strip .lede em {
  font-style: italic;
  font-weight: 600;
  color: var(--red);
}
.institutional-strip .meta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 20px 0;
  border-top: 0.5px solid var(--rule-strong);
  border-bottom: 0.5px solid var(--rule-strong);
}
.institutional-strip .meta-strip .cell {
  text-align: center;
  padding: 2px 12px;
  border-right: 1px solid var(--rule);
}
.institutional-strip .meta-strip .cell:last-child { border-right: none; }
.institutional-strip .meta-strip .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 36px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.institutional-strip .meta-strip .label {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- Section common ---------- */
section.editorial {
  padding: clamp(64px, 8.5vw, 120px) 0;
  position: relative;
  z-index: 2;
}

/* ---------- Manifesto / President ---------- */
.manifesto .container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.manifesto .lead {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  color: var(--ink);
  text-transform: uppercase;
}
.manifesto .lead em {
  font-style: italic;
  font-weight: 700;
  color: var(--red);
}
.manifesto blockquote {
  font-family: var(--font-condensed);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.35;
  color: var(--ink-soft);
  padding: 0 0 0 24px;
  border-left: 4px solid var(--red);
  margin-bottom: 28px;
}
.manifesto .attribution {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.manifesto .attribution .name { color: var(--ink); font-weight: 700; }
.manifesto .attribution .sep { color: var(--red); }
.manifesto p.body {
  margin-top: 28px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ---------- Bulletin Feature ---------- */
.bulletin-feature {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}
.bulletin-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(229, 210, 166, 0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}
.bulletin-feature .container {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
  position: relative;
  z-index: 2;
}
.bulletin-feature .section-head {
  grid-column: 1 / -1;
  margin-bottom: 12px;
}
.bulletin-feature .section-head::after { border-top-color: var(--cream); }
.bulletin-feature .section-head::before { border-top-color: var(--cream); }
.bulletin-feature .section-head h2 { color: var(--paper); }
.bulletin-feature .section-head h2 em { color: var(--red-light); }
.bulletin-feature .section-head .numeral { color: var(--paper); }
.bulletin-feature .section-head .numeral::before { border-bottom-color: var(--red-light); }
.bulletin-feature .section-head .head-meta { color: var(--cream); }

.bulletin-card { grid-column: 1; }
.bulletin-card .label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 22px;
}
.bulletin-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 32px;
}
.bulletin-card h3 em {
  font-style: italic;
  font-weight: 800;
  color: var(--red-light);
}
.bulletin-card .contents { list-style: none; margin-bottom: 36px; }
.bulletin-card .contents li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(229, 210, 166, 0.18);
  align-items: baseline;
}
.bulletin-card .contents li:last-child {
  border-bottom: 1px solid rgba(229, 210, 166, 0.18);
}
.bulletin-card .contents .pageno {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(229, 210, 166, 0.55);
  letter-spacing: 0.08em;
}
.bulletin-card .contents .title {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 17px;
  color: var(--paper);
  line-height: 1.25;
}
.bulletin-card .contents .title em {
  font-style: italic;
  font-weight: 700;
  color: var(--cream);
}
.bulletin-card .contents .author {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.bulletin-card .actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.bulletin-cover {
  grid-column: 2;
  position: relative;
  aspect-ratio: 3 / 4;
  background: #14100B;
  border: 1px solid rgba(229, 210, 166, 0.3);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease;
}
.bulletin-cover::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(229, 210, 166, 0.15);
  pointer-events: none;
}
.bulletin-cover:hover { transform: translateY(-6px); }
.bulletin-cover .cover-head {
  border-bottom: 1px solid rgba(229, 210, 166, 0.3);
  padding-bottom: 20px;
  text-align: center;
}
.bulletin-cover .cover-head .pub {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 12px;
}
.bulletin-cover .cover-head .issue {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 44px;
  color: var(--paper);
  line-height: 1;
  text-transform: uppercase;
}
.bulletin-cover .cover-art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.bulletin-cover .cover-art svg { width: 100%; height: 100%; max-height: 220px; }
.bulletin-cover .cover-foot {
  border-top: 1px solid rgba(229, 210, 166, 0.3);
  padding-top: 16px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
}

/* ---------- Articles grid ---------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--rule-strong);
}
.article-card {
  padding: 40px 28px 36px 0;
  border-bottom: 0.5px solid var(--rule-strong);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.article-card + .article-card {
  border-left: 0.5px solid var(--rule-strong);
  padding-left: 28px;
}
.article-card:hover { transform: translateY(-3px); }
.article-card .kicker { margin-bottom: 18px; }
.article-card h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
  transition: color 0.25s;
}
.article-card h3 em {
  font-style: italic;
  font-weight: 800;
  color: var(--red);
}
.article-card:hover h3 { color: var(--red-deep); }
.article-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}
.article-card .byline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.article-card .byline .author { color: var(--ink-soft); font-weight: 700; }

/* ---------- Events ---------- */
.events-section { background: var(--paper-deep); }
.event-list { display: flex; flex-direction: column; }
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr 2fr 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 30px 0;
  border-top: 0.5px solid var(--rule);
  cursor: pointer;
  transition: padding 0.25s ease, background 0.25s ease;
}
.event-row:last-child { border-bottom: 0.5px solid var(--rule); }
.event-row:hover { padding-left: 14px; padding-right: 14px; background: var(--paper-warm); }
.event-row .date {
  line-height: 1;
  text-align: center;
  border-right: 1px solid var(--rule);
  padding-right: 24px;
}
.event-row .date .month {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.event-row .date .day {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 44px;
  color: var(--ink);
  line-height: 1;
}
.event-row .name {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  text-transform: uppercase;
}
.event-row .name em {
  font-style: italic;
  font-weight: 800;
  color: var(--red);
}
.event-row .location { font-size: 14px; color: var(--ink-soft); }
.event-row .type {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.event-row .chev {
  color: var(--ink-mute);
  transition: transform 0.25s, color 0.25s;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
}
.event-row:hover .chev { color: var(--red); transform: translateX(6px); }

/* ---------- Join CTA ---------- */
.join-cta {
  padding: clamp(64px, 8.5vw, 120px) 0;
  position: relative;
  z-index: 2;
}
.join-cta .container {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
}
.join-cta .container::before,
.join-cta .container::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  border-top: 2px solid var(--ink);
}
.join-cta .container::before { top: 0; }
.join-cta .container::after { bottom: 0; }
.join-cta .inner-rule-top, .join-cta .inner-rule-bottom {
  position: absolute;
  left: 0; right: 0;
  border-top: 0.5px solid var(--ink);
}
.join-cta .inner-rule-top { top: 3px; }
.join-cta .inner-rule-bottom { bottom: 3px; }
.join-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.join-cta h2 em {
  font-style: italic;
  font-weight: 900;
  color: var(--red);
}
.join-cta p.intro {
  margin-top: 24px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 480px;
}
.join-cta .options { display: flex; flex-direction: column; }
.join-cta .option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-top: 0.5px solid var(--rule);
}
.join-cta .option:first-of-type { border-top: none; padding-top: 0; }
.join-cta .option:last-of-type {
  border-bottom: 0.5px solid var(--rule);
  margin-bottom: 28px;
}
.join-cta .option .tier {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--ink);
}
.join-cta .option .tier .note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-mute);
  display: block;
  margin-top: 5px;
  font-weight: 400;
  text-transform: none;
  font-style: normal;
  letter-spacing: 0;
}
.join-cta .option .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 32px;
  color: var(--red);
}
.join-cta .option .price .per {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: 6px;
  font-style: normal;
}

/* (.event-empty moved to shared styles.css — used by home + /collectos) */

@media (max-width: 880px) {
  .slide { grid-template-columns: 1fr; gap: 28px; position: relative; display: none; }
  .slide.active { display: grid; }
  .slide-plate { aspect-ratio: 4 / 3; max-width: 100%; }
  .slider-stage { min-height: 0; }
  .institutional-strip .container { grid-template-columns: 1fr; }
  .institutional-strip .meta-strip { grid-template-columns: repeat(2, 1fr); }
  .institutional-strip .meta-strip .cell:nth-child(2) { border-right: none; }
  .manifesto .container,
  .bulletin-feature .container,
  .join-cta .container { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card + .article-card { border-left: none; padding-left: 0; border-top: 0.5px solid var(--rule-strong); }
  .event-row { grid-template-columns: 100px 1fr auto; gap: 18px; }
  .event-row .location, .event-row .type { display: none; }
  .bulletin-cover { aspect-ratio: 4/5; max-width: 320px; margin: 0 auto; }
}
