/* ==========================================================================
   PM Ritual Tabs
   Mobile-first: base = stacked, @media (min-width: 960px) = 2-column + year tabs
   ========================================================================== */

.pm-ritual {
  background-color: #d55c3e;
}

.pm-ritual__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ── Left intro ─────────────────────────────────────────────────────────── */

.pm-ritual__intro {
  padding: 40px 24px 20px;
  text-align: center;
}

.pm-ritual__heading {
  margin: 0;
  font-family: "Fliege Mono", monospace;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f4f8b4;
  font-size: 40px;
  line-height: 1;
}

.pm-ritual__intro-text {
  margin-top: 20px;
  font-family: "Fliege Mono", monospace;
  color: #f4f8b4;
  font-size: 14px;
  line-height: 1.6;
}

/* ── Year panel ──────────────────────────────────────────────────────────── */

.pm-ritual__panel {
  display: block;
  padding: 0 24px 24px;
}

.pm-ritual__year-content {
  display: none;
  flex-direction: column;
  gap: 24px;
}

.pm-ritual__year-content.is-active {
  display: flex;
}

.pm-ritual__box {
  box-sizing: border-box;
  padding: 32px 24px;
  border: 2px solid #f4f8b4;
  text-align: center;
}

.pm-ritual__box-heading {
  margin: 0;
  font-family: "HeyNovember", sans-serif;
  font-weight: normal;
  color: #f4f8b4;
  font-size: 26px;
  line-height: 1.1;
}

.pm-ritual__box-text {
  margin: 16px 0 0;
  font-family: "Fliege Mono", monospace;
  color: #f4f8b4;
  font-size: 14px;
  line-height: 1.6;
}

.pm-ritual__image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.pm-ritual__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-ritual__image-placeholder {
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

/* ── Year buttons ────────────────────────────────────────────────────────── */

.pm-ritual__years {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.pm-ritual__year {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Fliege Mono", monospace;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f4f8b4;
  font-size: 20px;
  line-height: 1;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.pm-ritual__year:hover {
  opacity: 0.8;
}

.pm-ritual__year.is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* ── Desktop (≥ 960px) ───────────────────────────────────────────────────── */

@media (min-width: 960px) {
  .pm-ritual__inner {
    flex-direction: row;
    align-items: stretch;
  }

  .pm-ritual__intro {
    width: 38%;
    padding: 60px 40px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .pm-ritual__heading {
    font-size: 60px;
  }

  .pm-ritual__intro-text {
    font-size: 14px;
  }

  .pm-ritual__panel {
    width: 62%;
    padding: 60px 60px 40px 0;
  }

  .pm-ritual__year-content {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .pm-ritual__box {
    flex: 0 0 38%;
    height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 32px;
  }

  .pm-ritual__box-heading {
    font-size: 34px;
  }

  .pm-ritual__image {
    flex: 1;
    height: 560px;
  }

  .pm-ritual__years {
    margin-top: 32px;
  }

  .pm-ritual__year {
    font-size: 26px;
  }
}
